@scoreboardmax/api-types 1.0.34-next.11 → 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 +4 -2
- package/dist/internal.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -757,9 +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
|
-
|
|
762
|
+
dateCreated: string;
|
|
763
|
+
dateGameStart: string;
|
|
764
|
+
dateGameEnd?: string;
|
|
763
765
|
qualityScore: number;
|
|
764
766
|
data: BasketballInsightResponse;
|
|
765
767
|
}
|
package/dist/internal.d.ts
CHANGED
|
@@ -775,9 +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
|
-
|
|
780
|
+
dateCreated: string;
|
|
781
|
+
dateGameStart: string;
|
|
782
|
+
dateGameEnd?: string;
|
|
781
783
|
qualityScore: number;
|
|
782
784
|
data: BasketballInsightResponse;
|
|
783
785
|
}
|