@lichess-org/types 2.0.121 → 2.0.123

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 +36 -3
  2. package/package.json +1 -1
package/lichess-api.d.ts CHANGED
@@ -11670,7 +11670,18 @@ export interface operations {
11670
11670
  };
11671
11671
  broadcastStreamRoundPgn: {
11672
11672
  parameters: {
11673
- query?: never;
11673
+ query?: {
11674
+ /**
11675
+ * @description Include clock comments in the PGN moves, when available.
11676
+ * Example: `2. exd5 { [%clk 1:01:27] } e5 { [%clk 1:01:28] }`
11677
+ */
11678
+ clocks?: boolean;
11679
+ /**
11680
+ * @description Include analysis comments in the PGN moves, when available.
11681
+ * Example: `12. Bxf6 { [%eval 0.23] }`
11682
+ */
11683
+ comments?: boolean;
11684
+ };
11674
11685
  header?: never;
11675
11686
  path: {
11676
11687
  /** @description The broadcast round ID */
@@ -11694,7 +11705,18 @@ export interface operations {
11694
11705
  };
11695
11706
  broadcastRoundPgn: {
11696
11707
  parameters: {
11697
- query?: never;
11708
+ query?: {
11709
+ /**
11710
+ * @description Include clock comments in the PGN moves, when available.
11711
+ * Example: `2. exd5 { [%clk 1:01:27] } e5 { [%clk 1:01:28] }`
11712
+ */
11713
+ clocks?: boolean;
11714
+ /**
11715
+ * @description Include analysis comments in the PGN moves, when available.
11716
+ * Example: `12. Bxf6 { [%eval 0.23] }`
11717
+ */
11718
+ comments?: boolean;
11719
+ };
11698
11720
  header?: never;
11699
11721
  path: {
11700
11722
  /** @description The round ID */
@@ -11718,7 +11740,18 @@ export interface operations {
11718
11740
  };
11719
11741
  broadcastAllRoundsPgn: {
11720
11742
  parameters: {
11721
- query?: never;
11743
+ query?: {
11744
+ /**
11745
+ * @description Include clock comments in the PGN moves, when available.
11746
+ * Example: `2. exd5 { [%clk 1:01:27] } e5 { [%clk 1:01:28] }`
11747
+ */
11748
+ clocks?: boolean;
11749
+ /**
11750
+ * @description Include analysis comments in the PGN moves, when available.
11751
+ * Example: `12. Bxf6 { [%eval 0.23] }`
11752
+ */
11753
+ comments?: boolean;
11754
+ };
11722
11755
  header?: never;
11723
11756
  path: {
11724
11757
  /** @description The broadcast tournament ID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lichess-org/types",
3
- "version": "2.0.121",
3
+ "version": "2.0.123",
4
4
  "description": "Lichess.org API types",
5
5
  "homepage": "https://github.com/lichess-org/api",
6
6
  "license": "AGPL-3.0-or-later",