@spash/frontlib 0.0.33 → 1.0.0

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.
Files changed (3) hide show
  1. package/dist/main.d.ts +23 -10
  2. package/dist/main.js +1266 -1249
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -104,6 +104,7 @@ export declare interface Dooh {
104
104
  type: 'lite' | 'full';
105
105
  theme: string;
106
106
  orientation: 'portrait' | 'landscape';
107
+ sports: Sport[];
107
108
  }
108
109
 
109
110
  export declare interface DoohContent {
@@ -250,6 +251,7 @@ export declare interface Session {
250
251
  id: number;
251
252
  matchIntensity: {
252
253
  score: number;
254
+ value: number;
253
255
  maximumSpeed: number;
254
256
  intensityScore: number;
255
257
  averageSpeed: number;
@@ -556,6 +558,7 @@ export declare interface SessionTeam {
556
558
  score: number[];
557
559
  team: Team;
558
560
  maxConsecutiveGoals?: number;
561
+ color: string;
559
562
  maxInvincibilityDuration?: number;
560
563
  teamFootStat: TeamFootStat | null;
561
564
  teamPadelStat: {
@@ -687,8 +690,18 @@ declare interface TeamFootStat {
687
690
  score: number;
688
691
  realism: {
689
692
  score: number;
690
- value: number;
691
- total: number;
693
+ goalXgRatio: {
694
+ score: number;
695
+ value: number;
696
+ };
697
+ goalShotsRatio: {
698
+ score: number;
699
+ value: number;
700
+ };
701
+ goalAttackPresRatio: {
702
+ score: number;
703
+ value: number;
704
+ };
692
705
  realism: {
693
706
  score: number;
694
707
  value: number;
@@ -698,29 +711,29 @@ declare interface TeamFootStat {
698
711
  score: number;
699
712
  value: number;
700
713
  };
701
- globalShoots: {
714
+ globalShots: {
702
715
  score: number;
703
- shootsTried: {
716
+ shotsTried: {
704
717
  score: number;
705
718
  value: number;
706
719
  };
707
- shoots: {
720
+ shots: {
708
721
  score: number;
709
- shootsNumber: {
722
+ shotsNumber: {
710
723
  score: number;
711
724
  value: number;
712
725
  };
713
- shootsPosition: {
726
+ shotsPosition: {
714
727
  coordinates: number[][];
715
728
  };
716
729
  };
717
- shootsOnTarget: {
730
+ shotsOnTarget: {
718
731
  score: number;
719
- shootsOnTargetNumber: {
732
+ shotsOnTargetNumber: {
720
733
  score: number;
721
734
  value: number;
722
735
  };
723
- shootsOnTargetPosition: {
736
+ shotsOnTargetPosition: {
724
737
  coordinates: number[][];
725
738
  };
726
739
  };