yahoo fantasy api

Changelog

5.3.0

  • Split the roster resource into 2 functions (which was avoided in the past). `roster.fetch` will work the same as `roster.players` always has. `roster.players` will be backwards compatible but will now allow an optional additional "subresource" parameter that return additional information about the roster being queried.
  • Removed unused and undocumented "filter" checks on games.fetch
  • Cleaned up mapPlayer function in playerHelpers
  • Added resourceHelper file for roster changes
  • Minor code cleanup

5.2.2

  • Fixed a bug where transactions somehow didn't have players and would cause a crash.

5.2.1

  • Dependabot alert fixes.

5.2.0

  • Add support for `lastweek` and `lastmonth` as arguments in `player.stats` resource (Thanks to nosecreek!)

5.1.0

  • Cleaned up the user.game_leagues function to have the game.league array be an array of objects instead of an array of a single array holding an object (which was just weird and bad).

5.0.0

  • My NextJS docs site was giving me grief about ESM/CJS imports so I made some changes that should work for whatever import method you want to use
  • Updated the `mapScoreboard` function that is used by the league resource to simplify the `stat_winners` array to show the winning `stat_id` and `team_key` (or `is_tied`), rather than having them nested inside a `stat_winner` object

4.2.0

  • Fixed a bug where querying player stats for a given week wasn't working.
  • Updated the `player.stats` function to accept a week OR a date (format `yyyy-mm-dd`) as the 2nd param
  • Fixed a bug that would cause the function to fail silently if trying to request stats for a given `week` for players outside of the NFL (for this you can just get the weeks from the game settings and make multiple queries for each day of the week).
  • Fixes Issue #79 (Big thanks to jimweigandt and rdbaron for the help finding / debugging the issue)

4.1.5

  • Fixed a bug where certain league settings were not loading properly for some older leagues. (merge PR #80(Thanks connor4312!)

4.1.4

  • Fixed a bug where the response from the token refresh was not being included in the promise chain. (merge PR #78) (Thanks connor4312!)

4.1.3

  • Fixed a bug where Yahoo! apparently no longer requires `;type=week` when building a URL for team.stats and player.stats, leading to no stats coming back for those resources (Issue #70)

4.1.2

  • Fixed bug where "selected position" was no longer working due to a change in the data format coming from Yahoo! (merge PR #69) (Thanks brisberg)

4.1.1

  • Small change to the way the resource and collection files are being imported as it was causing issues on some hosts...

4.1.0

  • Maybe would have made sense as a 5.0.0 as there may be breaking changes, but I haven't been able to find any yet...
  • the authCallback() function will now return an object with the user's access_token and refresh_token
  • the auth() function will accept a "state" string, allowing for state persistence through the authentication process
  • re-enabled the transactions.fetch() collection call
  • cleaned up the "wavier_days" and "stat_categories" objects on league resources
  • added deprecation warnings to the game.leagues and game.players functions as they're not very useful in that context

4.0.0

  • Added auth(), authCallback, setRefreshToken() functions to the library
  • Automatically handle refreshing of the token and call a user defined function when the token has expired
  • Added support for public queries
  • General cleanup

3.2.0

  • Added "players" subresource to "league" in order to obtain weekly / season stats for a player based on league settings
  • Fixed a bug where the starting status wasn't properly being returned due to a shift in how the data was being returned
  • Removed use of "request" library for size and performance reasons
  • General code optimizations and improvements

3.1.2

  • Updating dependencies

3.1.1

  • Resolve error when no team logo is present (fix Issue #42)

3.1.0

  • Introduced `promise` based flow for all endpoints as an alternative to callbacks. (Thanks Marois)
  • Will update the sandbox here to show that flow as time allows!

3.0.4

  • Fixed a bug in the players.league collection call where it was trying to use split on an array... (Issue #46)

3.0.3

  • Added the ability to specify a date or week when querying the team.stats resource.
  • Unit test fixes (Issue #42). Thanks Marios!
  • Updated "vulnerable" dependencies.

3.0.2

  • Fixed an issue with user.game_leagues resource, where the data was not at all user friendly (renamed "leagues" to "games" at the top level of the return object)

3.0.1

  • Fixed some typos in some import statements which caused issues on some servers

3.0.0

  • Major refactor to use ES6?... 2015? ...2018? Whatever the hell they're calling it now...
  • Using ES Modules (mjs) files where possible
  • Removed transactions collections (they'll be back!)

2.0.4

  • Added a fix to give a cleaner value for the new "batting order" attribute in the player oject.

2.0.3

  • Fixed a bug where the league players collection was not properly parsing the ownership subresource

2.0.2

  • Fixed a bug where "mapTeamPoints" helper function was not defining "self". Thanks platky!

2.0.1

  • Removed the code that added a "reason" to errors coming from Yahoo! as it was breaking other errors. Retry notifications should now be handled within the application using the module.

2.0.0

  • Moved to Yahoo!'s OAuth2.0 authentication mechanism.

1.0.2

  • Fixed game resource roster postions callback bug.

1.0.1

  • Fixed a typo that was breaking team mapping.

1.0.0

  • Breaking changes
  • Fixed NFL scoreboard/matchups bug (Issue #19)
  • In fixing this bug I realized that my "team" set up was really only useful for MLB fantasy, so I rewrote team mapping to work better across all sports and give additional details that weren't previously reported. This will cause errors if you are using the team.manager attribute in your code.

0.5.3

  • Fixed a bug where leagueFetch was throwing an error, thanks danielspector!

0.5.2

  • Fixed a bug where player stats by week url was not being created properly, thanks withsmilo!

0.5.1

  • Fixed a bug where collections that contained subresources would return no data.

0.5.0

  • Added "Transactions" collection with functionality to add players, drop players, and add/drop players, thanks again [githubsmilo](https://github.com/githubsmilo)!

0.4.4

  • Fixed a bug in player.draft_analysis, thanks githubsmilo!

0.4.3

  • Added weeks param for league.scoreboard
  • Added weeks param for team.matchups
  • Fixed a bug where individual players weren't mapping properly
  • Minor code cleanup

0.4.2

  • Added the ability to specify a date or week when querying the roster resource.
  • Cleaned up the player normalization model
  • Fixed a bug where the team.roster call was erroring

0.4.1

  • Fixes to how POST data is handled

0.4.0

  • Significantly restructured the code to have more consistency and set it up better for future plans, namely POST methods and proper unit testing * Removed the "refresh user token" and instead return the error to the user who can handle the refresh within their application.

0.3.1

  • Additional player attributes added, thanks ryus08!

0.3.0

  • Added a method to refresh the user's token if it has expired.

0.2.2

  • Hotfix to fix "Teams" collection - use error first convention

0.2.0

  • Made helper classes more consistent
  • Added collections for games, leagues, players, and teams
  • Moved to error first convention because JavaScript

0.1.2

  • Added 'Team Matchups' subresource
  • Added 'League Scoreboard' subresource
  • Minor code cleanup and improvements

0.1.1

  • Refactored module to fix a bug where user sessions were not necessarily unique because of require caching.

0.1

  • Initial release.