@spash/frontlib 0.0.33 → 0.0.34-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/main.d.ts +22 -10
- package/dist/main.js +1261 -1249
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ export declare interface Session {
|
|
|
250
250
|
id: number;
|
|
251
251
|
matchIntensity: {
|
|
252
252
|
score: number;
|
|
253
|
+
value: number;
|
|
253
254
|
maximumSpeed: number;
|
|
254
255
|
intensityScore: number;
|
|
255
256
|
averageSpeed: number;
|
|
@@ -556,6 +557,7 @@ export declare interface SessionTeam {
|
|
|
556
557
|
score: number[];
|
|
557
558
|
team: Team;
|
|
558
559
|
maxConsecutiveGoals?: number;
|
|
560
|
+
color: string;
|
|
559
561
|
maxInvincibilityDuration?: number;
|
|
560
562
|
teamFootStat: TeamFootStat | null;
|
|
561
563
|
teamPadelStat: {
|
|
@@ -687,8 +689,18 @@ declare interface TeamFootStat {
|
|
|
687
689
|
score: number;
|
|
688
690
|
realism: {
|
|
689
691
|
score: number;
|
|
690
|
-
|
|
691
|
-
|
|
692
|
+
goalXgRatio: {
|
|
693
|
+
score: number;
|
|
694
|
+
value: number;
|
|
695
|
+
};
|
|
696
|
+
goalShotsRatio: {
|
|
697
|
+
score: number;
|
|
698
|
+
value: number;
|
|
699
|
+
};
|
|
700
|
+
goalAttackPresRatio: {
|
|
701
|
+
score: number;
|
|
702
|
+
value: number;
|
|
703
|
+
};
|
|
692
704
|
realism: {
|
|
693
705
|
score: number;
|
|
694
706
|
value: number;
|
|
@@ -698,29 +710,29 @@ declare interface TeamFootStat {
|
|
|
698
710
|
score: number;
|
|
699
711
|
value: number;
|
|
700
712
|
};
|
|
701
|
-
|
|
713
|
+
globalShots: {
|
|
702
714
|
score: number;
|
|
703
|
-
|
|
715
|
+
shotsTried: {
|
|
704
716
|
score: number;
|
|
705
717
|
value: number;
|
|
706
718
|
};
|
|
707
|
-
|
|
719
|
+
shots: {
|
|
708
720
|
score: number;
|
|
709
|
-
|
|
721
|
+
shotsNumber: {
|
|
710
722
|
score: number;
|
|
711
723
|
value: number;
|
|
712
724
|
};
|
|
713
|
-
|
|
725
|
+
shotsPosition: {
|
|
714
726
|
coordinates: number[][];
|
|
715
727
|
};
|
|
716
728
|
};
|
|
717
|
-
|
|
729
|
+
shotsOnTarget: {
|
|
718
730
|
score: number;
|
|
719
|
-
|
|
731
|
+
shotsOnTargetNumber: {
|
|
720
732
|
score: number;
|
|
721
733
|
value: number;
|
|
722
734
|
};
|
|
723
|
-
|
|
735
|
+
shotsOnTargetPosition: {
|
|
724
736
|
coordinates: number[][];
|
|
725
737
|
};
|
|
726
738
|
};
|