Skip to content

Commit

Permalink
Updated docs for PR #472
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorMcKay committed Sep 3, 2024
1 parent e01d0af commit bba4a18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1327,6 +1327,8 @@ Gets your own Steam Level, and the level you have on a badge for a particular ga
- `includePlayedFreeGames` - Set to `true` to include free games that the user has used before. Default `false`.
- `filterAppids` - Pass an array of numeric AppIDs here to only retrieve those apps
- `includeFreeSub` - Set to `true` to include apps owned through Steam Sub 0
- `includeAppInfo` - Set to `false` to not include app info (default `true`)
- `skipUnvettedApps` - Set to `false` to include apps that haven't been vetted by Valve (default `true`)
- `callback` - Called when the request completes.
- `err` - An `Error` object on failure or `null` on success.
- `response` - The response object
Expand Down
2 changes: 1 addition & 1 deletion components/friends.js
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ class SteamUserFriends extends SteamUserFamilySharing {
/**
* Get the list of a user's owned apps.
* @param {SteamID|string} steamID - Either a SteamID object or a string that can parse into one
* @param {{includePlayedFreeGames?: boolean, filterAppids?: number[], includeFreeSub?: boolean}} [options]
* @param {{includePlayedFreeGames?: boolean, filterAppids?: number[], includeFreeSub?: boolean, includeAppInfo?: boolean, skipUnvettedApps?: boolean}} [options]
* @param {function} [callback]
* @returns {Promise}
*/
Expand Down

0 comments on commit bba4a18

Please sign in to comment.