@spash/frontlib 0.0.19 → 0.0.21-beta.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/dist/assets/style.css +3 -3
- package/dist/main.d.ts +18 -3
- package/dist/main.js +6330 -6160
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ export declare interface Session {
|
|
|
183
183
|
ngtvSessionPlayers: SessionPlayer[];
|
|
184
184
|
exportVideosEnabled?: boolean;
|
|
185
185
|
withStats?: boolean;
|
|
186
|
+
iaStatus?: 'stats_done' | 'error';
|
|
186
187
|
sessionPadelStat: {
|
|
187
188
|
id: number;
|
|
188
189
|
match: {
|
|
@@ -222,8 +223,10 @@ export declare interface Session {
|
|
|
222
223
|
};
|
|
223
224
|
};
|
|
224
225
|
chain_breaks: {
|
|
225
|
-
|
|
226
|
-
|
|
226
|
+
details: {
|
|
227
|
+
timestep: number;
|
|
228
|
+
values: number[];
|
|
229
|
+
};
|
|
227
230
|
};
|
|
228
231
|
};
|
|
229
232
|
};
|
|
@@ -294,7 +297,7 @@ export declare interface SessionPlayer {
|
|
|
294
297
|
declare interface SessionPlayerPadelStats {
|
|
295
298
|
id: number;
|
|
296
299
|
name: string;
|
|
297
|
-
|
|
300
|
+
video_path: string;
|
|
298
301
|
sentence: string;
|
|
299
302
|
positioning: {
|
|
300
303
|
score: number;
|
|
@@ -507,6 +510,18 @@ export declare interface SportCenter {
|
|
|
507
510
|
id: number;
|
|
508
511
|
durationChoices: number[];
|
|
509
512
|
language: string;
|
|
513
|
+
computers: {
|
|
514
|
+
boxId: string;
|
|
515
|
+
createdAt: string;
|
|
516
|
+
id: number;
|
|
517
|
+
name: string;
|
|
518
|
+
sponsoringPlayerId: string;
|
|
519
|
+
sponsoringScreenId: string;
|
|
520
|
+
type: string;
|
|
521
|
+
updatedAt: string;
|
|
522
|
+
vpnIp: string;
|
|
523
|
+
interactive: boolean;
|
|
524
|
+
}[];
|
|
510
525
|
}
|
|
511
526
|
|
|
512
527
|
declare interface SseCallback {
|