@mediahub-bg/ott-objects 0.4.10 → 0.4.12
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/package.json +1 -1
- package/web/types.ts +18 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -783,6 +783,24 @@ export interface SportEventSoccer extends SportEventBase {
|
|
|
783
783
|
secondHalfEnd: number /* int64 */;
|
|
784
784
|
lineupConfirmed: boolean;
|
|
785
785
|
}
|
|
786
|
+
export interface SportTournamentStage {
|
|
787
|
+
SportObjectCommon: SportObjectCommon;
|
|
788
|
+
name: string;
|
|
789
|
+
tournamentFK: number /* int64 */;
|
|
790
|
+
gender: string;
|
|
791
|
+
countryFK: number /* int64 */;
|
|
792
|
+
countryName: string;
|
|
793
|
+
startDate: number /* int64 */;
|
|
794
|
+
endDate: number /* int64 */;
|
|
795
|
+
}
|
|
796
|
+
export interface SportTournamentStageParticipant {
|
|
797
|
+
SportObjectCommon: SportObjectCommon;
|
|
798
|
+
tournamentStageFK: number /* int64 */;
|
|
799
|
+
dateFrom: string;
|
|
800
|
+
dateTo: string;
|
|
801
|
+
active: boolean;
|
|
802
|
+
participant: SportParticipant;
|
|
803
|
+
}
|
|
786
804
|
export interface SportEventSoccerResult {
|
|
787
805
|
event: SportEventSoccer;
|
|
788
806
|
standing?: SportStandingEventStats;
|