@scoreboardmax/api-types 1.0.4 → 1.0.6
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/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This file contains type definitions for API consumers.
|
|
5
5
|
* These types are automatically generated from the ScoreboardMax API source code.
|
|
6
6
|
*
|
|
7
|
-
* @version Generated on 2025-08-
|
|
7
|
+
* @version Generated on 2025-08-08T16:23:10.791Z
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
export enum ApiAction {
|
|
@@ -835,6 +835,14 @@ export interface ScoreboardResponse {
|
|
|
835
835
|
overlay: OverlayResponse | string;
|
|
836
836
|
}
|
|
837
837
|
|
|
838
|
+
export interface ScoreboardSettingsBase {
|
|
839
|
+
clockAscending: boolean;
|
|
840
|
+
enableKeyboardShortcuts: boolean;
|
|
841
|
+
showAccountLogo: boolean;
|
|
842
|
+
showSponsors: boolean;
|
|
843
|
+
sponsorFilter: string[] | null;
|
|
844
|
+
}
|
|
845
|
+
|
|
838
846
|
export interface ScoreboardTeamBaseRequest {
|
|
839
847
|
teamId: string | null;
|
|
840
848
|
name: string | undefined;
|