Skip to content

Commit

Permalink
feat(games): update the API
Browse files Browse the repository at this point in the history
#### games:v1

The following keys were added:
- schemas.Player.properties.gamePlayerId.description
- schemas.Player.properties.gamePlayerId.type
  • Loading branch information
yoshi-automation authored and bcoe committed Apr 11, 2022
1 parent 5e955b4 commit 4498445
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/games-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,7 @@
}
}
},
"revision": "20220317",
"revision": "20220330",
"rootUrl": "https://games.googleapis.com/",
"schemas": {
"AchievementDefinition": {
Expand Down Expand Up @@ -2430,6 +2430,10 @@
],
"type": "string"
},
"gamePlayerId": {
"description": "Per-application unique player identifier.",
"type": "string"
},
"kind": {
"description": "Uniquely identifies the type of this resource. Value is always the fixed string `games#player`",
"type": "string"
Expand Down
5 changes: 5 additions & 0 deletions src/apis/games/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,10 @@ export namespace games_v1 {
* The friend status of the given player, relative to the requester. This is unset if the player is not sharing their friends list with the game.
*/
friendStatus?: string | null;
/**
* Per-application unique player identifier.
*/
gamePlayerId?: string | null;
/**
* Uniquely identifies the type of this resource. Value is always the fixed string `games#player`
*/
Expand Down Expand Up @@ -4369,6 +4373,7 @@ export namespace games_v1 {
* // "displayName": "my_displayName",
* // "experienceInfo": {},
* // "friendStatus": "my_friendStatus",
* // "gamePlayerId": "my_gamePlayerId",
* // "kind": "my_kind",
* // "name": {},
* // "originalPlayerId": "my_originalPlayerId",
Expand Down

0 comments on commit 4498445

Please sign in to comment.