@scoreboardmax/api-types 1.0.34-next.6 → 1.0.34-next.7
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/dist/index.d.ts +4 -0
- package/dist/internal.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -639,6 +639,7 @@ export interface FootballDataRequest {
|
|
|
639
639
|
distanceToGo: string | null;
|
|
640
640
|
flag: boolean;
|
|
641
641
|
period: FootballPeriod;
|
|
642
|
+
overtimeNumber?: number;
|
|
642
643
|
team1: FootballScoreboardTeamRequest;
|
|
643
644
|
team2: FootballScoreboardTeamRequest;
|
|
644
645
|
settings?: FootballSettingsRequest;
|
|
@@ -649,6 +650,7 @@ export interface FootballDataResponse {
|
|
|
649
650
|
distanceToGo: string | null;
|
|
650
651
|
flag: boolean;
|
|
651
652
|
period: FootballPeriod;
|
|
653
|
+
overtimeNumber?: number;
|
|
652
654
|
team1: FootballScoreboardTeamResponse;
|
|
653
655
|
team2: FootballScoreboardTeamResponse;
|
|
654
656
|
settings: FootballSettingsResponse;
|
|
@@ -669,6 +671,8 @@ export interface FootballSettings extends ScoreboardSettingsBase {
|
|
|
669
671
|
playClockLength?: number;
|
|
670
672
|
playClockSecondaryLength?: number;
|
|
671
673
|
timeoutsPerHalf?: number;
|
|
674
|
+
overtimeLength?: number;
|
|
675
|
+
overtimeHasClock: boolean;
|
|
672
676
|
showGameClock: boolean;
|
|
673
677
|
showPlayClock: boolean;
|
|
674
678
|
showTimeouts: boolean;
|
package/dist/internal.d.ts
CHANGED
|
@@ -657,6 +657,7 @@ export interface FootballDataRequest {
|
|
|
657
657
|
distanceToGo: string | null;
|
|
658
658
|
flag: boolean;
|
|
659
659
|
period: FootballPeriod;
|
|
660
|
+
overtimeNumber?: number;
|
|
660
661
|
team1: FootballScoreboardTeamRequest;
|
|
661
662
|
team2: FootballScoreboardTeamRequest;
|
|
662
663
|
settings?: FootballSettingsRequest;
|
|
@@ -667,6 +668,7 @@ export interface FootballDataResponse {
|
|
|
667
668
|
distanceToGo: string | null;
|
|
668
669
|
flag: boolean;
|
|
669
670
|
period: FootballPeriod;
|
|
671
|
+
overtimeNumber?: number;
|
|
670
672
|
team1: FootballScoreboardTeamResponse;
|
|
671
673
|
team2: FootballScoreboardTeamResponse;
|
|
672
674
|
settings: FootballSettingsResponse;
|
|
@@ -687,6 +689,8 @@ export interface FootballSettings extends ScoreboardSettingsBase {
|
|
|
687
689
|
playClockLength?: number;
|
|
688
690
|
playClockSecondaryLength?: number;
|
|
689
691
|
timeoutsPerHalf?: number;
|
|
692
|
+
overtimeLength?: number;
|
|
693
|
+
overtimeHasClock: boolean;
|
|
690
694
|
showGameClock: boolean;
|
|
691
695
|
showPlayClock: boolean;
|
|
692
696
|
showTimeouts: boolean;
|