Commit 33649282 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Return rank count from leaderboard and tournament score listings where available.

parent ffe63a7f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Introduce pagination for console API leaderboard and tournament listing endpoint.
- Introduce pagination for devconsole leaderboard view.
- Add storage object indexing support and related runtime functions.
- Return rank count from leaderboard score listings, if available for the given leaderboard.
- Return rank count from tournament score listings, if available for the given tournament.

### Changed
- Better formatting for graphed values in devconsole status view.
+187 −187

File changed.

Preview size limit exceeded, changes collapsed.

+830 −996

File changed.

Preview size limit exceeded, changes collapsed.

+10 −0
Original line number Diff line number Diff line
@@ -4232,6 +4232,11 @@
        "prevCursor": {
          "type": "string",
          "description": "The cursor to send when retrieving the previous page, if any."
        },
        "rankCount": {
          "type": "string",
          "format": "int64",
          "description": "The total number of ranks available."
        }
      },
      "description": "A set of leaderboard records, may be part of a leaderboard records page or a batch of individual records."
@@ -4767,6 +4772,11 @@
        "prevCursor": {
          "type": "string",
          "description": "The cursor to send when retrieving the previous page (optional)."
        },
        "rankCount": {
          "type": "string",
          "format": "int64",
          "description": "The total number of ranks available."
        }
      },
      "description": "A set of tournament records which may be part of a tournament records page or a batch of individual records."
+1 −1
Original line number Diff line number Diff line
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.2.0
// - protoc             v3.21.12
// - protoc             v4.23.4
// source: apigrpc.proto

package apigrpc
Loading