@lichess-org/types 2.0.50 → 2.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lichess-api.d.ts +8 -2
- package/package.json +1 -1
package/lichess-api.d.ts
CHANGED
|
@@ -5976,6 +5976,8 @@ export interface components {
|
|
|
5976
5976
|
* Example: `Round 1`
|
|
5977
5977
|
* */
|
|
5978
5978
|
BroadcastRoundFormName: string;
|
|
5979
|
+
win: number;
|
|
5980
|
+
draw: number;
|
|
5979
5981
|
BroadcastRoundForm: (
|
|
5980
5982
|
| {
|
|
5981
5983
|
name: components["schemas"]["BroadcastRoundFormName"];
|
|
@@ -6104,7 +6106,10 @@ export interface components {
|
|
|
6104
6106
|
* @default true
|
|
6105
6107
|
*/
|
|
6106
6108
|
rated?: boolean;
|
|
6107
|
-
customScoring?: components["schemas"]["
|
|
6109
|
+
"customScoring.white.win"?: components["schemas"]["win"];
|
|
6110
|
+
"customScoring.white.draw"?: components["schemas"]["draw"];
|
|
6111
|
+
"customScoring.black.win"?: components["schemas"]["win"];
|
|
6112
|
+
"customScoring.black.draw"?: components["schemas"]["draw"];
|
|
6108
6113
|
/** @description (Only for Admins) Waiting time for each poll.
|
|
6109
6114
|
* */
|
|
6110
6115
|
period?: number;
|
|
@@ -6126,8 +6131,9 @@ export interface components {
|
|
|
6126
6131
|
name?: string;
|
|
6127
6132
|
title?: components["schemas"]["Title"];
|
|
6128
6133
|
rating?: number;
|
|
6129
|
-
|
|
6134
|
+
fideId?: number;
|
|
6130
6135
|
fed?: string;
|
|
6136
|
+
clock?: number;
|
|
6131
6137
|
}[];
|
|
6132
6138
|
lastMove?: string;
|
|
6133
6139
|
thinkTime?: number;
|