We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248febb commit 2ef7a63Copy full SHA for 2ef7a63
src/leaderboard.js
@@ -33,6 +33,8 @@ AV.LeaderboardUpdateStrategy = {
33
BETTER: 'better',
34
/** Keep the last updated statistic */
35
LAST: 'last',
36
+ /** Keep the sum of all updated statistics */
37
+ SUM: 'sum',
38
};
39
40
/**
storage.d.ts
@@ -902,11 +902,11 @@ export enum LeaderboardOrder {
902
export enum LeaderboardUpdateStrategy {
903
BETTER,
904
LAST,
905
+ SUM,
906
}
907
908
export enum LeaderboardVersionChangeInterval {
909
NEVER,
- HOUR,
910
DAY,
911
WEEK,
912
MONTH,
0 commit comments