@lichess-org/types 2.0.96 → 2.0.97
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 +15 -3
- package/package.json +1 -1
package/lichess-api.d.ts
CHANGED
|
@@ -7622,7 +7622,13 @@ export interface components {
|
|
|
7622
7622
|
};
|
|
7623
7623
|
};
|
|
7624
7624
|
responses: never;
|
|
7625
|
-
parameters:
|
|
7625
|
+
parameters: {
|
|
7626
|
+
/**
|
|
7627
|
+
* @description Only update the provided fields, leaving others unchanged
|
|
7628
|
+
* @example true
|
|
7629
|
+
*/
|
|
7630
|
+
PatchQuery: boolean;
|
|
7631
|
+
};
|
|
7626
7632
|
requestBodies: never;
|
|
7627
7633
|
headers: never;
|
|
7628
7634
|
pathItems: never;
|
|
@@ -32497,7 +32503,13 @@ export interface operations {
|
|
|
32497
32503
|
};
|
|
32498
32504
|
broadcastRoundUpdate: {
|
|
32499
32505
|
parameters: {
|
|
32500
|
-
query?:
|
|
32506
|
+
query?: {
|
|
32507
|
+
/**
|
|
32508
|
+
* @description Only update the provided fields, leaving others unchanged
|
|
32509
|
+
* @example true
|
|
32510
|
+
*/
|
|
32511
|
+
patch?: components["parameters"]["PatchQuery"];
|
|
32512
|
+
};
|
|
32501
32513
|
header?: never;
|
|
32502
32514
|
path: {
|
|
32503
32515
|
/** @description The broadcast round ID */
|
|
@@ -35915,7 +35927,7 @@ export interface operations {
|
|
|
35915
35927
|
"application/json": {
|
|
35916
35928
|
id: string;
|
|
35917
35929
|
};
|
|
35918
|
-
"application/x-ndjson":
|
|
35930
|
+
"application/x-ndjson": "";
|
|
35919
35931
|
};
|
|
35920
35932
|
};
|
|
35921
35933
|
/** @description The creation of the seek failed. */
|