@mediahub-bg/ott-objects 0.5.67 → 0.5.70
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 +8 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -627,10 +627,18 @@ export interface SportParticipant extends SportObjectCommon {
|
|
|
627
627
|
countryName: string;
|
|
628
628
|
}
|
|
629
629
|
export interface SportStandingData extends SportObjectCommon {
|
|
630
|
+
value: string;
|
|
631
|
+
code: string;
|
|
630
632
|
}
|
|
631
633
|
export interface SportStandingParticipant extends SportObjectCommon {
|
|
634
|
+
participantFK: number /* int64 */;
|
|
635
|
+
rank: number /* int */;
|
|
636
|
+
participant: SportParticipant;
|
|
637
|
+
data: SportStandingData[];
|
|
632
638
|
}
|
|
633
639
|
export interface SportStandingEventStats extends SportObjectCommon {
|
|
640
|
+
name: string;
|
|
641
|
+
participants: SportStandingParticipant[];
|
|
634
642
|
}
|
|
635
643
|
export interface SportEventProperty extends SportObjectCommon {
|
|
636
644
|
name: string;
|