@spash/frontlib 0.0.21-beta.4 → 0.0.21-beta.6
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 +18 -1
- package/dist/main.js +6484 -6390
- 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
|
|
|
@@ -476,7 +490,8 @@ 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"
|
|
480
495
|
}
|
|
481
496
|
|
|
482
497
|
export declare interface SpashVideoPlayer {
|
|
@@ -521,6 +536,7 @@ export declare interface SportCenter {
|
|
|
521
536
|
updatedAt: string;
|
|
522
537
|
vpnIp: string;
|
|
523
538
|
interactive: boolean;
|
|
539
|
+
keepAliveInterval: number;
|
|
524
540
|
}[];
|
|
525
541
|
}
|
|
526
542
|
|
|
@@ -600,6 +616,7 @@ export declare const useHelper: ({ t, router }?: {
|
|
|
600
616
|
};
|
|
601
617
|
arrayUniqueValue: (array: any[], key: string) => any[];
|
|
602
618
|
sleep: (ms: number) => Promise<unknown>;
|
|
619
|
+
checkIfComponentExists: (componentName: string) => boolean;
|
|
603
620
|
};
|
|
604
621
|
|
|
605
622
|
export { useI18n }
|