@spash/frontlib 0.0.30-beta.2 → 0.0.31
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 +5 -0
- package/dist/main.js +2882 -2849
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -531,6 +531,10 @@ export declare interface SessionTeam {
|
|
|
531
531
|
maxConsecutiveGoals?: number;
|
|
532
532
|
maxInvincibilityDuration?: number;
|
|
533
533
|
teamFootStat: TeamFootStat | null;
|
|
534
|
+
teamPadelStat: {
|
|
535
|
+
id: number;
|
|
536
|
+
score: number;
|
|
537
|
+
};
|
|
534
538
|
}
|
|
535
539
|
|
|
536
540
|
export declare interface SessionType {
|
|
@@ -598,6 +602,7 @@ export declare interface SportCenter {
|
|
|
598
602
|
updatedAt: string;
|
|
599
603
|
vpnIp: string;
|
|
600
604
|
interactive: boolean;
|
|
605
|
+
extraTimeEnabled: boolean;
|
|
601
606
|
keepAliveInterval: number;
|
|
602
607
|
}[];
|
|
603
608
|
}
|