@lichess-org/types 2.0.50 → 2.0.51

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 +6 -1
  2. package/package.json +1 -1
package/lichess-api.d.ts CHANGED
@@ -5976,6 +5976,8 @@ export interface components {
5976
5976
  * Example: `Round 1`
5977
5977
  * */
5978
5978
  BroadcastRoundFormName: string;
5979
+ win: number;
5980
+ draw: number;
5979
5981
  BroadcastRoundForm: (
5980
5982
  | {
5981
5983
  name: components["schemas"]["BroadcastRoundFormName"];
@@ -6104,7 +6106,10 @@ export interface components {
6104
6106
  * @default true
6105
6107
  */
6106
6108
  rated?: boolean;
6107
- customScoring?: components["schemas"]["BroadcastCustomScoring"];
6109
+ "customScoring.white.win"?: components["schemas"]["win"];
6110
+ "customScoring.white.draw"?: components["schemas"]["draw"];
6111
+ "customScoring.black.win"?: components["schemas"]["win"];
6112
+ "customScoring.black.draw"?: components["schemas"]["draw"];
6108
6113
  /** @description (Only for Admins) Waiting time for each poll.
6109
6114
  * */
6110
6115
  period?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lichess-org/types",
3
- "version": "2.0.50",
3
+ "version": "2.0.51",
4
4
  "description": "Lichess.org API types",
5
5
  "homepage": "https://github.com/lichess-org/api",
6
6
  "license": "AGPL-3.0-or-later",