Skip to content

Commit

Permalink
Merge pull request pac12#10 from murray18/feature/game-statistics
Browse files Browse the repository at this point in the history
Feature/game statistics
  • Loading branch information
Ken Gilbert authored Aug 4, 2022
2 parents 4915cd0 + 95a1f11 commit 4955b51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-sportsdata",
"description": "A wrapper for the SportsData API",
"version": "0.4.1",
"version": "0.4.2",
"homepage": "https://github.com/pac12/node-sportsdata",
"author": {
"name": "PAC-12",
Expand Down
3 changes: 3 additions & 0 deletions src/lib/v7/v7.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ class V7 extends SportApi
getExtendedBoxscore: (params, callback) ->
this.getResource '/games/%(gameId)s/boxscore.xml', params, callback

getGameStatistics: (params, callback) ->
this.getResource '/games/%(gameId)s/statistics.xml', params, callback

getPlayByPlay: (params, callback) ->
this.getResource '/games/%(gameId)s/pbp.xml', params, callback

Expand Down

0 comments on commit 4955b51

Please sign in to comment.