diff --git a/src/boxscore/boxscore.js b/src/boxscore/boxscore.js index 5b0f0e6..ecaef10 100644 --- a/src/boxscore/boxscore.js +++ b/src/boxscore/boxscore.js @@ -16,11 +16,15 @@ class Boxscore extends BaseObject { * @typedef {object} BoxscoreMap * * @property {number} homeScore The total points scored by the home team. + * @property {number} homeProjectedScore The projected total points scored by the home team. + * NOTE: This field is only populated in the boxscore for the current matchup period! * @property {number} homeTeamId The home team's id. Can be used to load a cached Team. * @property {BoxscorePlayer[]} homeRoster The home team's roster, containing player info and * stats. * * @property {number} awayScore The total points scored by the away team. + * @property {number} awayProjectedScore The projected total points scored by the away team. + * NOTE: This field is only populated in the boxscore for the current matchup period! * @property {number} awayTeamId The away team's id. Can be used to load a cached Team. * @property {BoxscorePlayer[]} awayRoster The away team's roster, containing player info and * stats. @@ -36,6 +40,7 @@ class Boxscore extends BaseObject { _.get(responseData, 'totalPointsLive') || _.get(responseData, 'totalPoints') ) }, + homeProjectedScore: 'home.totalProjectedPointsLive', homeTeamId: 'home.teamId', homeRoster: { key: 'home.rosterForCurrentScoringPeriod.entries', @@ -52,6 +57,7 @@ class Boxscore extends BaseObject { _.get(responseData, 'totalPointsLive') || _.get(responseData, 'totalPoints') ) }, + awayProjectedScore: 'away.totalProjectedPointsLive', awayTeamId: 'away.teamId', awayRoster: { key: 'away.rosterForCurrentScoringPeriod.entries',