@scoreboardmax/api-types 1.0.34-next.12 → 1.0.34-next.13
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 +3 -2
- package/dist/internal.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -757,10 +757,11 @@ export interface InsightResponse {
|
|
|
757
757
|
uri: string;
|
|
758
758
|
accountId: string;
|
|
759
759
|
scoreboardId: string;
|
|
760
|
+
gameId: string;
|
|
760
761
|
scoreboardType: ScoreboardType;
|
|
761
762
|
dateCreated: string;
|
|
762
|
-
|
|
763
|
-
|
|
763
|
+
dateGameStart: string;
|
|
764
|
+
dateGameEnd?: string;
|
|
764
765
|
qualityScore: number;
|
|
765
766
|
data: BasketballInsightResponse;
|
|
766
767
|
}
|
package/dist/internal.d.ts
CHANGED
|
@@ -775,10 +775,11 @@ export interface InsightResponse {
|
|
|
775
775
|
uri: string;
|
|
776
776
|
accountId: string;
|
|
777
777
|
scoreboardId: string;
|
|
778
|
+
gameId: string;
|
|
778
779
|
scoreboardType: ScoreboardType;
|
|
779
780
|
dateCreated: string;
|
|
780
|
-
|
|
781
|
-
|
|
781
|
+
dateGameStart: string;
|
|
782
|
+
dateGameEnd?: string;
|
|
782
783
|
qualityScore: number;
|
|
783
784
|
data: BasketballInsightResponse;
|
|
784
785
|
}
|