@spash/frontlib 0.0.21-beta.4 → 0.0.21-beta.5
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 +15 -0
- package/dist/main.js +3 -0
- 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
|
|
|
@@ -521,6 +535,7 @@ export declare interface SportCenter {
|
|
|
521
535
|
updatedAt: string;
|
|
522
536
|
vpnIp: string;
|
|
523
537
|
interactive: boolean;
|
|
538
|
+
keepAliveInterval: number;
|
|
524
539
|
}[];
|
|
525
540
|
}
|
|
526
541
|
|
package/dist/main.js
CHANGED
|
@@ -37400,12 +37400,15 @@ const yL = /* @__PURE__ */ Mg(vL), ML = yL(function() {
|
|
|
37400
37400
|
secondary: "rgb(var(--color-secondary))",
|
|
37401
37401
|
"secondary-darker": "rgb(var(--color-secondary-darker))",
|
|
37402
37402
|
"text-primary": "rgb(var(--color-text-primary))",
|
|
37403
|
+
"introduction-primary": "rgb(var(--color-introduction-primary))",
|
|
37403
37404
|
"text-timer": "rgb(var(--color-text-timer))",
|
|
37404
37405
|
"buzz-primary": "rgb(var(--color-buzz-primary))",
|
|
37405
37406
|
"buzz-primary-darker": "rgb(var(--color-buzz-primary-darker))",
|
|
37406
37407
|
"buzz-primary-text": "rgb(var(--color-buzz-primary-text))",
|
|
37407
37408
|
"team-a": "rgb(var(--color-team-a))",
|
|
37408
37409
|
"team-b": "rgb(var(--color-team-b))",
|
|
37410
|
+
"foot-team-a": "rgb(var(--color-foot-team-a))",
|
|
37411
|
+
"foot-team-b": "rgb(var(--color-foot-team-b))",
|
|
37409
37412
|
"button-text-primary": "rgb(var(--color-button-text-primary))",
|
|
37410
37413
|
"button-bg-primary": "rgb(var(--color-button-bg-primary))",
|
|
37411
37414
|
"button-text-secondary": "rgb(var(--color-button-text-secondary))",
|