Skip to content

Commit b4c52c4

Browse files
feat(games): update the api
#### games:v1 The following keys were deleted: - schemas.GamePlayerToken.properties.token (Total Keys: 2) - schemas.RetrieveDeveloperGamesLastPlayerTokenResponse.properties.token.$ref (Total Keys: 1) - schemas.RetrieveGamesPlayerTokensResponse.properties.applicationRecallTokens (Total Keys: 2) The following keys were added: - schemas.GamePlayerToken.properties.recallToken.$ref (Total Keys: 1) - schemas.RetrieveDeveloperGamesLastPlayerTokenResponse.properties.gamePlayerToken.$ref (Total Keys: 1) - schemas.RetrieveGamesPlayerTokensResponse.properties.gamePlayerTokens (Total Keys: 2)
1 parent 2f05daf commit b4c52c4

File tree

2 files changed

+20
-22
lines changed

2 files changed

+20
-22
lines changed

docs/dyn/games_v1.recall.html

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,14 @@ <h3>Method Details</h3>
117117
An object of the form:
118118

119119
{ # A list of recall token data returned from the RetrieveGamesPlayerTokens RPC
120-
&quot;applicationRecallTokens&quot;: [ # The requested applications along with the recall tokens for the player. If the player does not have recall tokens for an application, that application is not included in the response.
120+
&quot;gamePlayerTokens&quot;: [ # The requested applications along with the recall tokens for the player. If the player does not have recall tokens for an application, that application is not included in the response.
121121
{ # Recall tokens for a game.
122122
&quot;applicationId&quot;: &quot;A String&quot;, # The application that this player identifier is for.
123-
&quot;token&quot;: [ # Recall token data.
124-
{ # Recall token data returned from RetrievePlayerTokens RPC
125-
&quot;expireTime&quot;: &quot;A String&quot;, # Optional. Optional expiration time of the token
126-
&quot;multiPlayerPersona&quot;: True or False, # Required. Whether the persona identified by the token is linked to multiple PGS Players
127-
&quot;token&quot;: &quot;A String&quot;, # Required. Value of the Recall token as it is provided by the client via LinkPersona RPC
128-
},
129-
],
123+
&quot;recallToken&quot;: { # Recall token data returned from RetrievePlayerTokens RPC # Recall token data.
124+
&quot;expireTime&quot;: &quot;A String&quot;, # Optional. Optional expiration time of the token
125+
&quot;multiPlayerPersona&quot;: True or False, # Required. Whether the persona identified by the token is linked to multiple PGS Players
126+
&quot;token&quot;: &quot;A String&quot;, # Required. Value of the Recall token as it is provided by the client via LinkPersona RPC
127+
},
130128
},
131129
],
132130
}</pre>
@@ -147,10 +145,13 @@ <h3>Method Details</h3>
147145
An object of the form:
148146

149147
{ # Recall token data returned from for the RetrieveDeveloperGamesLastPlayerToken RPC
150-
&quot;token&quot;: { # Recall token data returned from RetrievePlayerTokens RPC # The recall token associated with the requested PGS Player principal. It can be unset if there is no recall token associated with the requested principal.
151-
&quot;expireTime&quot;: &quot;A String&quot;, # Optional. Optional expiration time of the token
152-
&quot;multiPlayerPersona&quot;: True or False, # Required. Whether the persona identified by the token is linked to multiple PGS Players
153-
&quot;token&quot;: &quot;A String&quot;, # Required. Value of the Recall token as it is provided by the client via LinkPersona RPC
148+
&quot;gamePlayerToken&quot;: { # Recall tokens for a game. # The recall token associated with the requested PGS Player principal. It can be unset if there is no recall token associated with the requested principal.
149+
&quot;applicationId&quot;: &quot;A String&quot;, # The application that this player identifier is for.
150+
&quot;recallToken&quot;: { # Recall token data returned from RetrievePlayerTokens RPC # Recall token data.
151+
&quot;expireTime&quot;: &quot;A String&quot;, # Optional. Optional expiration time of the token
152+
&quot;multiPlayerPersona&quot;: True or False, # Required. Whether the persona identified by the token is linked to multiple PGS Players
153+
&quot;token&quot;: &quot;A String&quot;, # Required. Value of the Recall token as it is provided by the client via LinkPersona RPC
154+
},
154155
},
155156
}</pre>
156157
</div>

googleapiclient/discovery_cache/documents/games.v1.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,7 @@ false
14691469
}
14701470
}
14711471
},
1472-
"revision": "20240618",
1472+
"revision": "20240701",
14731473
"rootUrl": "https://games.googleapis.com/",
14741474
"schemas": {
14751475
"AchievementDefinition": {
@@ -2231,12 +2231,9 @@ false
22312231
"description": "The application that this player identifier is for.",
22322232
"type": "string"
22332233
},
2234-
"token": {
2235-
"description": "Recall token data.",
2236-
"items": {
2237-
"$ref": "RecallToken"
2238-
},
2239-
"type": "array"
2234+
"recallToken": {
2235+
"$ref": "RecallToken",
2236+
"description": "Recall token data."
22402237
}
22412238
},
22422239
"type": "object"
@@ -3314,8 +3311,8 @@ false
33143311
"description": "Recall token data returned from for the RetrieveDeveloperGamesLastPlayerToken RPC",
33153312
"id": "RetrieveDeveloperGamesLastPlayerTokenResponse",
33163313
"properties": {
3317-
"token": {
3318-
"$ref": "RecallToken",
3314+
"gamePlayerToken": {
3315+
"$ref": "GamePlayerToken",
33193316
"description": "The recall token associated with the requested PGS Player principal. It can be unset if there is no recall token associated with the requested principal."
33203317
}
33213318
},
@@ -3325,7 +3322,7 @@ false
33253322
"description": "A list of recall token data returned from the RetrieveGamesPlayerTokens RPC",
33263323
"id": "RetrieveGamesPlayerTokensResponse",
33273324
"properties": {
3328-
"applicationRecallTokens": {
3325+
"gamePlayerTokens": {
33293326
"description": "The requested applications along with the recall tokens for the player. If the player does not have recall tokens for an application, that application is not included in the response.",
33303327
"items": {
33313328
"$ref": "GamePlayerToken"

0 commit comments

Comments
 (0)