@spash/frontlib 0.0.2 → 0.0.4
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/main.d.ts +37 -6
- package/dist/main.js +6325 -5981
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -17,9 +17,33 @@ declare interface AppOptions {
|
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
export declare interface CameraConfiguration {
|
|
21
|
+
id: number;
|
|
22
|
+
layer: CameraConfigurationLayer[];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export declare interface CameraConfigurationLayer {
|
|
26
|
+
label: string;
|
|
27
|
+
points: {
|
|
28
|
+
x: number;
|
|
29
|
+
y: number;
|
|
30
|
+
}[];
|
|
31
|
+
width: number;
|
|
32
|
+
height: number;
|
|
33
|
+
color: {
|
|
34
|
+
background: string;
|
|
35
|
+
border: string;
|
|
36
|
+
key: string;
|
|
37
|
+
text: string;
|
|
38
|
+
variable: string;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
20
42
|
export declare interface Competition {
|
|
21
43
|
id: number;
|
|
22
44
|
name: string;
|
|
45
|
+
firstLogoImageUrl: string;
|
|
46
|
+
secondLogoImageUrl: string;
|
|
23
47
|
createdAt: string;
|
|
24
48
|
}
|
|
25
49
|
|
|
@@ -34,6 +58,7 @@ export declare interface Field {
|
|
|
34
58
|
sport: Sport;
|
|
35
59
|
subscribedOptions: string[];
|
|
36
60
|
camerasTotal: number;
|
|
61
|
+
camerasConfiguration: CameraConfiguration[];
|
|
37
62
|
}
|
|
38
63
|
|
|
39
64
|
export declare interface Player {
|
|
@@ -59,23 +84,27 @@ export declare interface Session {
|
|
|
59
84
|
actualDuration: number;
|
|
60
85
|
plannedDuration: number;
|
|
61
86
|
status: string;
|
|
62
|
-
ngtvSessionEvents: SessionEvent[];
|
|
63
|
-
ngtvSessionPlayers: SessionPlayer[];
|
|
64
87
|
reference: string;
|
|
65
|
-
ngtvSessionHomeTeam: SessionTeam;
|
|
66
|
-
ngtvSessionAwayTeam: SessionTeam;
|
|
67
|
-
field: Field;
|
|
68
88
|
bookingProvider: string;
|
|
69
89
|
bookingProviderData?: string;
|
|
90
|
+
gameSheetUrl: string;
|
|
91
|
+
competitionStage: string;
|
|
92
|
+
videoUploadEnabled?: boolean;
|
|
93
|
+
competition: Competition;
|
|
70
94
|
sport: Sport;
|
|
71
95
|
ngtvSessionType?: SessionType;
|
|
72
|
-
|
|
96
|
+
ngtvSessionHomeTeam: SessionTeam;
|
|
97
|
+
ngtvSessionAwayTeam: SessionTeam;
|
|
98
|
+
field: Field;
|
|
99
|
+
ngtvSessionEvents: SessionEvent[];
|
|
100
|
+
ngtvSessionPlayers: SessionPlayer[];
|
|
73
101
|
}
|
|
74
102
|
|
|
75
103
|
export declare interface SessionEvent {
|
|
76
104
|
id: number;
|
|
77
105
|
type: string;
|
|
78
106
|
name: string;
|
|
107
|
+
currentSet: number;
|
|
79
108
|
videoTimecode: number;
|
|
80
109
|
currentScoreAway: number;
|
|
81
110
|
currentScoreHome: number;
|
|
@@ -110,6 +139,7 @@ export declare interface SessionInput {
|
|
|
110
139
|
ngtvSessionType?: string;
|
|
111
140
|
bookingProvider?: string;
|
|
112
141
|
bookingProviderData?: string;
|
|
142
|
+
videoUploadEnabled?: boolean;
|
|
113
143
|
}
|
|
114
144
|
|
|
115
145
|
export declare interface SessionPlayer {
|
|
@@ -166,6 +196,7 @@ declare interface SponsoringOptions {
|
|
|
166
196
|
export declare interface Sport {
|
|
167
197
|
id: number;
|
|
168
198
|
name: string;
|
|
199
|
+
racketSport: boolean;
|
|
169
200
|
}
|
|
170
201
|
|
|
171
202
|
export declare interface SportCenter {
|