From bba4a188054a5c52dccfa40ce8be5c7010809a7e Mon Sep 17 00:00:00 2001
From: Alex Corn <alex@alexcorn.com>
Date: Mon, 2 Sep 2024 20:10:10 -0400
Subject: [PATCH] Updated docs for PR #472

---
 README.md             | 2 ++
 components/friends.js | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

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}
 	 */