File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11openapi : " 3.1.0"
22info :
3- version : 2.0.123
3+ version : 2.0.124
44 title : Lichess.org API reference
55 contact :
66 name : " Lichess.org API"
Original file line number Diff line number Diff line change 2222 schema :
2323 type : integer
2424 minimum : 1356998400070
25+ - in : query
26+ name : since
27+ description : Download entries since this timestamp. Defaults to account creation date.
28+ schema :
29+ type : integer
30+ minimum : 1356998400070
2531 responses :
2632 " 200 " :
2733 description : The puzzle activity of the logged in user.
Original file line number Diff line number Diff line change @@ -207,7 +207,11 @@ export class Lichess {
207207 /**
208208 * Get your puzzle activity
209209 */
210- async apiPuzzleActivity ( params : { max ?: number ; before ?: number } ) {
210+ async apiPuzzleActivity ( params : {
211+ max ?: number ;
212+ before ?: number ;
213+ since ?: number ;
214+ } ) {
211215 const path = "/api/puzzle/activity" as const ;
212216 return await this . requestor . get (
213217 { path, query : params } ,
You can’t perform that action at this time.
0 commit comments