@spash/frontlib 0.0.21-beta.1 → 0.0.21-beta.10
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 +1 -1
- package/dist/main.d.ts +22 -2
- package/dist/main.js +6721 -6599
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -81,6 +81,20 @@ export declare interface CompetitionNgtvSessionDetail {
|
|
|
81
81
|
status: string;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
export declare interface ComputerLog {
|
|
85
|
+
id: string;
|
|
86
|
+
computer_id: string;
|
|
87
|
+
event_type: 'keep_alive' | 'video_loading_timeout';
|
|
88
|
+
data: string;
|
|
89
|
+
created_at: string;
|
|
90
|
+
updated_at: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare interface ComputerLogPayload {
|
|
94
|
+
event_type: 'keep_alive' | 'video_loading_timeout';
|
|
95
|
+
data: Record<string, unknown>;
|
|
96
|
+
}
|
|
97
|
+
|
|
84
98
|
declare const _default: (app: App, options?: AppOptions) => void;
|
|
85
99
|
export default _default;
|
|
86
100
|
|
|
@@ -117,7 +131,7 @@ export declare interface DoohContent {
|
|
|
117
131
|
multiplexEvents: SessionEvent[];
|
|
118
132
|
}
|
|
119
133
|
|
|
120
|
-
declare type DoohContentContentType = 'article' | 'highlights' | 'image' | 'video' | 'competition' | 'multiplex' | 'ads' | 'bookings';
|
|
134
|
+
declare type DoohContentContentType = 'article' | 'highlights' | 'image' | 'video' | 'competition' | 'multiplex' | 'ads' | 'bookings' | 'error';
|
|
121
135
|
|
|
122
136
|
export declare interface Field {
|
|
123
137
|
id: number;
|
|
@@ -476,7 +490,9 @@ export declare enum SpashVideoOptions {
|
|
|
476
490
|
'buzz' = "buzz",
|
|
477
491
|
'layer' = "layer",
|
|
478
492
|
'draw' = "draw",
|
|
479
|
-
'field2D' = "field2D"
|
|
493
|
+
'field2D' = "field2D",
|
|
494
|
+
'resumeAuto' = "resumeAuto",
|
|
495
|
+
'filterPlayers' = "filterPlayers"
|
|
480
496
|
}
|
|
481
497
|
|
|
482
498
|
export declare interface SpashVideoPlayer {
|
|
@@ -521,6 +537,7 @@ export declare interface SportCenter {
|
|
|
521
537
|
updatedAt: string;
|
|
522
538
|
vpnIp: string;
|
|
523
539
|
interactive: boolean;
|
|
540
|
+
keepAliveInterval: number;
|
|
524
541
|
}[];
|
|
525
542
|
}
|
|
526
543
|
|
|
@@ -600,6 +617,7 @@ export declare const useHelper: ({ t, router }?: {
|
|
|
600
617
|
};
|
|
601
618
|
arrayUniqueValue: (array: any[], key: string) => any[];
|
|
602
619
|
sleep: (ms: number) => Promise<unknown>;
|
|
620
|
+
checkIfComponentExists: (componentName: string) => boolean;
|
|
603
621
|
};
|
|
604
622
|
|
|
605
623
|
export { useI18n }
|
|
@@ -639,4 +657,6 @@ export declare const useTheme: () => {
|
|
|
639
657
|
setTheme: (newTheme: string) => void;
|
|
640
658
|
};
|
|
641
659
|
|
|
660
|
+
export declare const useTimeout: () => void;
|
|
661
|
+
|
|
642
662
|
export { }
|