@lichess-org/types 2.0.40 → 2.0.41

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.
Files changed (2) hide show
  1. package/lichess-api.d.ts +8 -10
  2. package/package.json +1 -1
package/lichess-api.d.ts CHANGED
@@ -6246,7 +6246,7 @@ export interface components {
6246
6246
  name: string;
6247
6247
  title?: components["schemas"]["Title"];
6248
6248
  federation: string;
6249
- year?: number;
6249
+ year?: number | null;
6250
6250
  inactive?: boolean;
6251
6251
  standard?: number;
6252
6252
  rapid?: number;
@@ -6329,16 +6329,14 @@ export interface components {
6329
6329
  * "neio": 201.5,
6330
6330
  * "thibault": 144.5
6331
6331
  * },
6332
- * "nbGames": 346,
6333
- * "matchup": {
6334
- * "users": {
6335
- * "neio": 44,
6336
- * "thibault": 43
6337
- * },
6338
- * "nbGames": 87
6339
- * }
6332
+ * "nbGames": 346
6340
6333
  * } */
6341
- Crosstable: unknown;
6334
+ Crosstable: {
6335
+ users: {
6336
+ [key: string]: number;
6337
+ };
6338
+ nbGames: number;
6339
+ };
6342
6340
  LightUserOnline: components["schemas"]["LightUser"] & {
6343
6341
  online?: boolean;
6344
6342
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lichess-org/types",
3
- "version": "2.0.40",
3
+ "version": "2.0.41",
4
4
  "description": "Lichess.org API types",
5
5
  "homepage": "https://github.com/lichess-org/api",
6
6
  "license": "AGPL-3.0-or-later",