@mediahub-bg/ott-objects 0.5.40 → 0.5.42
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 +4 -2
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -607,6 +607,7 @@ export interface SportObjectCommon {
|
|
|
607
607
|
updatedAt: number /* int64 */;
|
|
608
608
|
}
|
|
609
609
|
export interface SportImage extends SportObjectCommon {
|
|
610
|
+
contentType: string;
|
|
610
611
|
value: string;
|
|
611
612
|
}
|
|
612
613
|
export interface SportParticipant extends SportObjectCommon {
|
|
@@ -645,6 +646,7 @@ export interface SportEventParticipantIncident extends SportObjectCommon {
|
|
|
645
646
|
eventIncidentFK: number /* int64 */;
|
|
646
647
|
incidentMinute: number /* int */;
|
|
647
648
|
playerName: string;
|
|
649
|
+
participant: SportParticipant;
|
|
648
650
|
}
|
|
649
651
|
export interface SportEventParticipantLineup extends SportObjectCommon {
|
|
650
652
|
}
|
|
@@ -675,8 +677,8 @@ export interface SportEventBase extends SportObjectCommon {
|
|
|
675
677
|
realStart: number /* int64 */;
|
|
676
678
|
realEnd: number /* int64 */;
|
|
677
679
|
matchStartChunkTime?: number /* int64 */;
|
|
678
|
-
participants
|
|
679
|
-
elapsed
|
|
680
|
+
participants?: SportEventParticipant[];
|
|
681
|
+
elapsed?: SportEventElapsed[];
|
|
680
682
|
}
|
|
681
683
|
export interface SportEventSoccer extends SportEventBase {
|
|
682
684
|
firstHalfEnd: number /* int64 */;
|