cfbd 5.9.9 → 5.11.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.
- package/cfbd-5.11.0.tgz +0 -0
- package/dist/types.gen.d.ts +7 -0
- package/package.json +1 -1
- package/src/types.gen.ts +7 -0
- package/cfbd-5.9.9.tgz +0 -0
package/cfbd-5.11.0.tgz
ADDED
|
Binary file
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -1013,6 +1018,7 @@ export type ScoreboardGame = {
|
|
|
1013
1018
|
name: (string) | null;
|
|
1014
1019
|
};
|
|
1015
1020
|
homeTeam: {
|
|
1021
|
+
winProbability: (number) | null;
|
|
1016
1022
|
lineScores: Array<(number)> | null;
|
|
1017
1023
|
points: (number) | null;
|
|
1018
1024
|
classification: ((DivisionClassification) | null);
|
|
@@ -1021,6 +1027,7 @@ export type ScoreboardGame = {
|
|
|
1021
1027
|
id: number;
|
|
1022
1028
|
};
|
|
1023
1029
|
awayTeam: {
|
|
1030
|
+
winProbability: (number) | null;
|
|
1024
1031
|
lineScores: Array<(number)> | null;
|
|
1025
1032
|
points: (number) | null;
|
|
1026
1033
|
classification: ((DivisionClassification) | null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cfbd",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.0",
|
|
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 = {
|
|
@@ -1081,6 +1086,7 @@ export type ScoreboardGame = {
|
|
|
1081
1086
|
name: (string) | null;
|
|
1082
1087
|
};
|
|
1083
1088
|
homeTeam: {
|
|
1089
|
+
winProbability: (number) | null;
|
|
1084
1090
|
lineScores: Array<(number)> | null;
|
|
1085
1091
|
points: (number) | null;
|
|
1086
1092
|
classification: ((DivisionClassification) | null);
|
|
@@ -1089,6 +1095,7 @@ export type ScoreboardGame = {
|
|
|
1089
1095
|
id: number;
|
|
1090
1096
|
};
|
|
1091
1097
|
awayTeam: {
|
|
1098
|
+
winProbability: (number) | null;
|
|
1092
1099
|
lineScores: Array<(number)> | null;
|
|
1093
1100
|
points: (number) | null;
|
|
1094
1101
|
classification: ((DivisionClassification) | null);
|
package/cfbd-5.9.9.tgz
DELETED
|
Binary file
|