Skip to content

Commit

Permalink
Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyro committed Apr 16, 2021
1 parent 533e05e commit 99f19b4
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Update to Bleve v2.0.3 release.
- Various other dependency updates.

### Fixed
- Fix user scoping in console purchase listing operations.

## [3.2.0] - 2021-04-14
### Added
- New API to logout and intercept logouts with session and refresh tokens.
Expand Down
94 changes: 94 additions & 0 deletions apigrpc/apigrpc.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,28 @@
}
}
},
"parameters": [
{
"name": "ids",
"description": "The account id of a user.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
},
{
"name": "usernames",
"description": "The account username of a user.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
"Nakama"
]
Expand All @@ -1447,6 +1469,28 @@
}
}
},
"parameters": [
{
"name": "ids",
"description": "The account id of a user.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
},
{
"name": "usernames",
"description": "The account username of a user.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
"Nakama"
]
Expand Down Expand Up @@ -1707,6 +1751,16 @@
"in": "path",
"required": true,
"type": "string"
},
{
"name": "user_ids",
"description": "The users to add.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
Expand Down Expand Up @@ -1739,6 +1793,16 @@
"in": "path",
"required": true,
"type": "string"
},
{
"name": "user_ids",
"description": "The users to ban.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
Expand Down Expand Up @@ -1771,6 +1835,16 @@
"in": "path",
"required": true,
"type": "string"
},
{
"name": "user_ids",
"description": "The users to demote.",
"in": "query",
"required": true,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
Expand Down Expand Up @@ -1835,6 +1909,16 @@
"in": "path",
"required": true,
"type": "string"
},
{
"name": "user_ids",
"description": "The users to kick.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
Expand Down Expand Up @@ -1899,6 +1983,16 @@
"in": "path",
"required": true,
"type": "string"
},
{
"name": "user_ids",
"description": "The users to promote.",
"in": "query",
"required": false,
"type": "array",
"items": {
"type": "string"
}
}
],
"tags": [
Expand Down

0 comments on commit 99f19b4

Please sign in to comment.