@@ -4,6 +4,8 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).
## [Unreleased]
### Changed
- Change runtime group add/kick/promote/demote APIs to include optional callerID parameter for permission checking. If callerID is an empty string it defaults to the admin user.
### Fixed
- Fix reading Lua authoritative match states that contain functions.
- Correct path representation for embedded migrations and console files on Windows systems.
"description":"A JSON object of additional properties (optional)."
},
"operator":{
"$ref":"#/definitions/apiOverrideOperator",
"description":"Operator override."
}
},
"description":"Record values to write."
@@ -4023,6 +4070,18 @@
},
"description":"A collection of zero or more notifications."
},
"apiOverrideOperator":{
"type":"string",
"enum":[
"NO_OVERRIDE",
"BEST",
"SET",
"INCREMENT",
"DECREMENT"
],
"default":"NO_OVERRIDE",
"description":"Operator that can be used to override the one set in the leaderboard.\n\n - NO_OVERRIDE: Do not override the leaderboard operator.\n - BEST: Override the leaderboard operator with BEST.\n - SET: Override the leaderboard operator with SET.\n - INCREMENT: Override the leaderboard operator with INCREMENT.\n - DECREMENT: Override the leaderboard operator with DECREMENT."