@lichess-org/types 2.0.95 → 2.0.96
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 +9 -0
- package/package.json +1 -1
package/lichess-api.d.ts
CHANGED
|
@@ -4012,6 +4012,8 @@ export interface components {
|
|
|
4012
4012
|
| "BOT";
|
|
4013
4013
|
/** @description Players can choose a color for their Patron wings.
|
|
4014
4014
|
* See [here for the color mappings](https://github.com/lichess-org/lila/blob/master/ui/lib/css/abstract/_patron-colors.scss).
|
|
4015
|
+
*
|
|
4016
|
+
* The presence of this field indicates the player is an active Patron.
|
|
4015
4017
|
* */
|
|
4016
4018
|
PatronColor: number;
|
|
4017
4019
|
TopUser: {
|
|
@@ -6470,6 +6472,13 @@ export interface components {
|
|
|
6470
6472
|
syncUsers: string;
|
|
6471
6473
|
}
|
|
6472
6474
|
) & {
|
|
6475
|
+
/**
|
|
6476
|
+
* @description Where the games come from.
|
|
6477
|
+
*
|
|
6478
|
+
* @default push
|
|
6479
|
+
* @enum {string}
|
|
6480
|
+
*/
|
|
6481
|
+
syncSource?: "push" | "url" | "urls" | "ids" | "users";
|
|
6473
6482
|
/**
|
|
6474
6483
|
* Format: int64
|
|
6475
6484
|
* @description Timestamp in milliseconds of broadcast round start. Leave empty to manually start the broadcast round.
|