@lichess-org/types 2.0.51 → 2.0.53
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 +5 -2
- package/package.json +1 -1
package/lichess-api.d.ts
CHANGED
|
@@ -6131,10 +6131,13 @@ export interface components {
|
|
|
6131
6131
|
name?: string;
|
|
6132
6132
|
title?: components["schemas"]["Title"];
|
|
6133
6133
|
rating?: number;
|
|
6134
|
-
|
|
6134
|
+
fideId?: number;
|
|
6135
6135
|
fed?: string;
|
|
6136
|
+
clock?: number;
|
|
6136
6137
|
}[];
|
|
6137
6138
|
lastMove?: string;
|
|
6139
|
+
/** @enum {string} */
|
|
6140
|
+
check?: "+" | "#";
|
|
6138
6141
|
thinkTime?: number;
|
|
6139
6142
|
/**
|
|
6140
6143
|
* @description The result of the game
|
|
@@ -13675,7 +13678,7 @@ export interface operations {
|
|
|
13675
13678
|
userId?: string;
|
|
13676
13679
|
/** @description Comma-separated list of scopes. Empty string if the token has no scopes. */
|
|
13677
13680
|
scopes?: string;
|
|
13678
|
-
/** @description Unix-
|
|
13681
|
+
/** @description Unix-timestamp in milliseconds or null if the token never expires. */
|
|
13679
13682
|
expires?: number | null;
|
|
13680
13683
|
} | null;
|
|
13681
13684
|
};
|