@scoreboardmax/api-types 1.0.3 → 1.0.5

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/index.d.ts +9 -9
  2. 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-08T15:49:48.968Z
7
+ * @version Generated on 2025-08-08T16:21:46.403Z
8
8
  */
9
9
 
10
10
  export enum ApiAction {
@@ -657,13 +657,6 @@ export interface OverlayRequest {
657
657
  color?: string;
658
658
  }
659
659
 
660
- export interface OverlayResponse {
661
- type: "players" | "sponsors";
662
- data: PlayerSummaryResponse[] | SponsorSummaryResponse[];
663
- title?: string | null;
664
- color?: string;
665
- }
666
-
667
660
  export interface PlanResponse extends Plan {
668
661
  }
669
662
 
@@ -786,7 +779,6 @@ export interface RosterResponse {
786
779
  accountId: string;
787
780
  dateCreated: string;
788
781
  dateModified: string;
789
- testProperty?: string;
790
782
  }
791
783
 
792
784
  export interface ScoreboardActivationListResponse {
@@ -836,6 +828,14 @@ export interface ScoreboardResponse {
836
828
  overlay: OverlayResponse | string;
837
829
  }
838
830
 
831
+ export interface ScoreboardSettingsBase {
832
+ clockAscending: boolean;
833
+ enableKeyboardShortcuts: boolean;
834
+ showAccountLogo: boolean;
835
+ showSponsors: boolean;
836
+ sponsorFilter: string[] | null;
837
+ }
838
+
839
839
  export interface ScoreboardTeamBaseRequest {
840
840
  teamId: string | null;
841
841
  name: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",