@mediahub-bg/ott-objects 0.5.98 → 0.6.1
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 +13 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -668,6 +668,7 @@ export interface SportEventParticipantIncident extends SportObjectCommon {
|
|
|
668
668
|
eventIncidentFK: number /* int64 */;
|
|
669
669
|
incidentMinute: number /* int */;
|
|
670
670
|
playerName: string;
|
|
671
|
+
reason: string; // e.g. "VAR:allowed", "VAR:disallowed_offside", "tactical"
|
|
671
672
|
properties: SportEventProperty[];
|
|
672
673
|
participant: SportParticipant;
|
|
673
674
|
}
|
|
@@ -796,6 +797,18 @@ export interface InSignInGoogle {
|
|
|
796
797
|
rememberme: boolean;
|
|
797
798
|
viewmap: string[];
|
|
798
799
|
view: string[];
|
|
800
|
+
requestRefreshToken: boolean;
|
|
801
|
+
}
|
|
802
|
+
export interface InSignInApple {
|
|
803
|
+
idToken: string;
|
|
804
|
+
code: string;
|
|
805
|
+
redirectUri: string;
|
|
806
|
+
nonce: string;
|
|
807
|
+
gdpr: boolean;
|
|
808
|
+
rememberme: boolean;
|
|
809
|
+
viewmap: string[];
|
|
810
|
+
view: string[];
|
|
811
|
+
requestRefreshToken: boolean;
|
|
799
812
|
}
|
|
800
813
|
export interface InSignIn {
|
|
801
814
|
email: string;
|