Updated docs
diff --git a/docs/dyn/games_v1.players.html b/docs/dyn/games_v1.players.html
index 42e9675..38a5681 100644
--- a/docs/dyn/games_v1.players.html
+++ b/docs/dyn/games_v1.players.html
@@ -96,6 +96,7 @@
   An object of the form:
 
     { # This is a JSON template for a Player resource.
+    "originalPlayerId": "A String", # The player ID that was used for this player the first time they signed into the game in question. This is only populated for calls to player.get for the requesting player, only if the player ID has subsequently changed, and only to clients that support remapping player IDs.
     "kind": "games#player", # Uniquely identifies the type of this resource. Value is always the fixed string games#player.
     "displayName": "A String", # The name to display for the player.
     "name": { # An object representation of the individual components of the player's name. For some players, these fields may not be present.
@@ -108,6 +109,7 @@
       "timeMillis": "A String", # The last time the player played the game in milliseconds since the epoch in UTC.
     },
     "playerId": "A String", # The ID of the player.
+    "bannerUrlPortrait": "A String", # The url to the portrait mode player banner image.
     "title": "A String", # The player's title rewarded for their game activities.
     "experienceInfo": { # This is a JSON template for 1P/3P metadata about the player's experience. # An object to represent Play Game experience information for the player.
       "lastLevelUpTimestampMillis": "A String", # The timestamp when the player was leveled up, in millis since Unix epoch UTC.
@@ -126,6 +128,7 @@
         "level": 42, # The level for the user.
       },
     },
+    "bannerUrlLandscape": "A String", # The url to the landscape mode player banner image.
     "avatarImageUrl": "A String", # The base URL for the image that represents the player.
   }</pre>
 </div>
@@ -137,8 +140,10 @@
 Args:
   collection: string, Collection of players being retrieved (required)
     Allowed values
+      connected - Retrieve a list of players that are also playing this game in reverse chronological order.
       playedWith - (DEPRECATED: please use played_with!) Retrieve a list of players you have played a multiplayer game (realtime or turn-based) with recently.
       played_with - Retrieve a list of players you have played a multiplayer game (realtime or turn-based) with recently.
+      visible - Retrieve a list of players in the user's social graph that are visible to this game.
   pageToken: string, The token returned by the previous request.
   language: string, The preferred language to use for strings returned by this method.
   maxResults: integer, The maximum number of player resources to return in the response, used for paging. For any response, the actual number of player resources returned may be less than the specified maxResults.
@@ -150,6 +155,7 @@
     "nextPageToken": "A String", # Token corresponding to the next page of results.
     "items": [ # The players.
       { # This is a JSON template for a Player resource.
+        "originalPlayerId": "A String", # The player ID that was used for this player the first time they signed into the game in question. This is only populated for calls to player.get for the requesting player, only if the player ID has subsequently changed, and only to clients that support remapping player IDs.
         "kind": "games#player", # Uniquely identifies the type of this resource. Value is always the fixed string games#player.
         "displayName": "A String", # The name to display for the player.
         "name": { # An object representation of the individual components of the player's name. For some players, these fields may not be present.
@@ -162,6 +168,7 @@
           "timeMillis": "A String", # The last time the player played the game in milliseconds since the epoch in UTC.
         },
         "playerId": "A String", # The ID of the player.
+        "bannerUrlPortrait": "A String", # The url to the portrait mode player banner image.
         "title": "A String", # The player's title rewarded for their game activities.
         "experienceInfo": { # This is a JSON template for 1P/3P metadata about the player's experience. # An object to represent Play Game experience information for the player.
           "lastLevelUpTimestampMillis": "A String", # The timestamp when the player was leveled up, in millis since Unix epoch UTC.
@@ -180,6 +187,7 @@
             "level": 42, # The level for the user.
           },
         },
+        "bannerUrlLandscape": "A String", # The url to the landscape mode player banner image.
         "avatarImageUrl": "A String", # The base URL for the image that represents the player.
       },
     ],