You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @property {Statistic[]} [includedStatistics] Other statistics of the user, specified by the `includeStatistic` option of `AV.Leaderboard.getResults()`
46
46
*/
47
47
48
+
/**
49
+
* @typedef {Object} LeaderboardArchive
50
+
* @property {string} statisticName
51
+
* @property {number} version version of the leaderboard
52
+
* @property {string} status
53
+
* @property {string} url URL for the downloadable archive
54
+
* @property {Date} activatedAt time when this version became active
55
+
* @property {Date} deactivatedAt time when this version was deactivated by a version incrementing
56
+
*/
57
+
48
58
/**
49
59
* @class
50
60
*/
@@ -358,5 +368,33 @@ _.extend(
358
368
authOptions,
359
369
}).then(()=>undefined);
360
370
},
371
+
/**
372
+
* (masterKey required) Get archived versions.
373
+
* @param {Object} [options]
374
+
* @param {number} [options.skip] The number of results to skip. This is useful for pagination.
375
+
* @param {number} [options.limit] The limit of the number of results.
0 commit comments