@lichess-org/types 2.0.122 → 2.0.124

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 +5 -6
  2. package/package.json +1 -1
package/lichess-api.d.ts CHANGED
@@ -8068,6 +8068,8 @@ export interface operations {
8068
8068
  max?: number;
8069
8069
  /** @description Download entries before this timestamp. Defaults to now. Use `before` and `max` for pagination. */
8070
8070
  before?: number;
8071
+ /** @description Download entries since this timestamp. Defaults to account creation date. */
8072
+ since?: number;
8071
8073
  };
8072
8074
  header?: never;
8073
8075
  path?: never;
@@ -11679,9 +11681,8 @@ export interface operations {
11679
11681
  /**
11680
11682
  * @description Include analysis comments in the PGN moves, when available.
11681
11683
  * Example: `12. Bxf6 { [%eval 0.23] }`
11682
- * @default true
11683
11684
  */
11684
- comments?: string;
11685
+ comments?: boolean;
11685
11686
  };
11686
11687
  header?: never;
11687
11688
  path: {
@@ -11715,9 +11716,8 @@ export interface operations {
11715
11716
  /**
11716
11717
  * @description Include analysis comments in the PGN moves, when available.
11717
11718
  * Example: `12. Bxf6 { [%eval 0.23] }`
11718
- * @default true
11719
11719
  */
11720
- comments?: string;
11720
+ comments?: boolean;
11721
11721
  };
11722
11722
  header?: never;
11723
11723
  path: {
@@ -11751,9 +11751,8 @@ export interface operations {
11751
11751
  /**
11752
11752
  * @description Include analysis comments in the PGN moves, when available.
11753
11753
  * Example: `12. Bxf6 { [%eval 0.23] }`
11754
- * @default true
11755
11754
  */
11756
- comments?: string;
11755
+ comments?: boolean;
11757
11756
  };
11758
11757
  header?: never;
11759
11758
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lichess-org/types",
3
- "version": "2.0.122",
3
+ "version": "2.0.124",
4
4
  "description": "Lichess.org API types",
5
5
  "homepage": "https://github.com/lichess-org/api",
6
6
  "license": "AGPL-3.0-or-later",