diff --git a/README.md b/README.md index 0515c78f..75fac180 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/components/friends.js b/components/friends.js index ccb64a43..41d13878 100644 --- a/components/friends.js +++ b/components/friends.js @@ -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} */