We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c925c commit d8f7ea7Copy full SHA for d8f7ea7
3 files changed
specs/lichess-api.yaml
@@ -1,6 +1,6 @@
1
openapi: "3.1.0"
2
info:
3
- version: 2.0.132
+ version: 2.0.133
4
title: Lichess.org API reference
5
contact:
6
name: "Lichess.org API"
specs/schemas/GameEventInfo.yaml
@@ -21,6 +21,8 @@ properties:
21
$ref: "./Speed.yaml"
22
perf:
23
type: string
24
+ rating:
25
+ type: integer
26
rated:
27
type: boolean
28
hasMoved:
src/schemas/GameEventInfo.ts
@@ -19,6 +19,7 @@ const GameEventInfo = z.object({
19
variant: z.optional(Variant),
20
speed: z.optional(Speed),
perf: z.optional(z.string()),
+ rating: z.optional(z.int()),
rated: z.optional(z.boolean()),
hasMoved: z.optional(z.boolean()),
opponent: z.optional(GameEventOpponent),
0 commit comments