cfbd 5.10.0 → 5.11.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.
Binary file
@@ -636,6 +636,7 @@ export type LiveGameTeam = {
636
636
  drives: number;
637
637
  scoringOpportunities: number;
638
638
  pointsPerOpportunity: number;
639
+ averageStartYardLine: (number) | null;
639
640
  plays: number;
640
641
  lineYards: number;
641
642
  lineYardsPerRush: number;
@@ -653,6 +654,10 @@ export type LiveGameTeam = {
653
654
  standardDownSuccessRate: number;
654
655
  passingDownSuccessRate: number;
655
656
  explosiveness: number;
657
+ /**
658
+ * Deserve-to-win metric for this team
659
+ */
660
+ deserveToWin?: number;
656
661
  };
657
662
  export type Matchup = {
658
663
  team1: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfbd",
3
- "version": "5.10.0",
3
+ "version": "5.11.1",
4
4
  "description": "This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -675,6 +675,7 @@ export type LiveGameTeam = {
675
675
  drives: number;
676
676
  scoringOpportunities: number;
677
677
  pointsPerOpportunity: number;
678
+ averageStartYardLine: (number) | null;
678
679
  plays: number;
679
680
  lineYards: number;
680
681
  lineYardsPerRush: number;
@@ -692,6 +693,10 @@ export type LiveGameTeam = {
692
693
  standardDownSuccessRate: number;
693
694
  passingDownSuccessRate: number;
694
695
  explosiveness: number;
696
+ /**
697
+ * Deserve-to-win metric for this team
698
+ */
699
+ deserveToWin?: number;
695
700
  };
696
701
 
697
702
  export type Matchup = {
package/cfbd-5.10.0.tgz DELETED
Binary file