cfbd 5.24.2 → 5.26.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.26.0.tgz +0 -0
- package/dist/sdk.gen.d.ts +59 -1
- package/dist/sdk.gen.js +100 -2
- package/dist/types.gen.d.ts +713 -0
- package/package.json +1 -1
- package/src/sdk.gen.ts +119 -1
- package/src/types.gen.ts +766 -0
- package/cfbd-5.24.2.tgz +0 -0
package/dist/types.gen.d.ts
CHANGED
|
@@ -900,6 +900,78 @@ export type MatchupGame = {
|
|
|
900
900
|
winner: (string) | null;
|
|
901
901
|
};
|
|
902
902
|
export type MediaType = 'tv' | 'radio' | 'web' | 'ppv' | 'mobile';
|
|
903
|
+
export type PassDepth = 'short' | 'deep';
|
|
904
|
+
export type PassDirection = 'left' | 'middle' | 'right';
|
|
905
|
+
export type PassingPlay = {
|
|
906
|
+
gameId: number;
|
|
907
|
+
playId: string;
|
|
908
|
+
driveId: string;
|
|
909
|
+
season: number;
|
|
910
|
+
week: number;
|
|
911
|
+
seasonType: SeasonType;
|
|
912
|
+
offenseId: number;
|
|
913
|
+
offense: string;
|
|
914
|
+
offenseConference: (string) | null;
|
|
915
|
+
defenseId: number;
|
|
916
|
+
defense: string;
|
|
917
|
+
defenseConference: (string) | null;
|
|
918
|
+
period: number;
|
|
919
|
+
clock: PassingPlayClock;
|
|
920
|
+
down: number;
|
|
921
|
+
distance: number;
|
|
922
|
+
playText: (string) | null;
|
|
923
|
+
passerId: (string) | null;
|
|
924
|
+
passer: (string) | null;
|
|
925
|
+
targetId: (string) | null;
|
|
926
|
+
target: (string) | null;
|
|
927
|
+
outcome: PassOutcome;
|
|
928
|
+
airYards: (number) | null;
|
|
929
|
+
passDepth: ((PassDepth) | null);
|
|
930
|
+
passDirection: ((PassDirection) | null);
|
|
931
|
+
passLocation: ((PassLocation) | null);
|
|
932
|
+
totalYards: (number) | null;
|
|
933
|
+
yardsAfterCatch: (number) | null;
|
|
934
|
+
startYardline: number;
|
|
935
|
+
startYardsToGoal: number;
|
|
936
|
+
targetYardsToGoal: (number) | null;
|
|
937
|
+
isSpike: boolean;
|
|
938
|
+
isThrowaway: boolean;
|
|
939
|
+
isIntentionalGrounding: boolean;
|
|
940
|
+
parseStatus: PassParseStatus;
|
|
941
|
+
};
|
|
942
|
+
export type PassingPlayClock = {
|
|
943
|
+
minutes: number;
|
|
944
|
+
seconds: number;
|
|
945
|
+
};
|
|
946
|
+
export type PassingProduction = {
|
|
947
|
+
attempts: number;
|
|
948
|
+
completions: number;
|
|
949
|
+
incompletions: number;
|
|
950
|
+
interceptions: number;
|
|
951
|
+
completionRate: (number) | null;
|
|
952
|
+
/**
|
|
953
|
+
* Number of attempts with non-null air yards, including zero-yard values.
|
|
954
|
+
*/
|
|
955
|
+
airYardsAttemptsAvailable: number;
|
|
956
|
+
totalAirYards: (number) | null;
|
|
957
|
+
averageDepthOfTarget: (number) | null;
|
|
958
|
+
/**
|
|
959
|
+
* Number of attempts with non-null total yards, including zero-yard
|
|
960
|
+
* incompletions and interceptions.
|
|
961
|
+
*/
|
|
962
|
+
totalYardsAttemptsAvailable: number;
|
|
963
|
+
totalYards: (number) | null;
|
|
964
|
+
/**
|
|
965
|
+
* Number of completed attempts with valid total yards and air yards to
|
|
966
|
+
* calculate yards after catch, including zero-yard values.
|
|
967
|
+
*/
|
|
968
|
+
yardsAfterCatchAttemptsAvailable: number;
|
|
969
|
+
totalYardsAfterCatch: (number) | null;
|
|
970
|
+
averageYardsAfterCatch: (number) | null;
|
|
971
|
+
};
|
|
972
|
+
export type PassLocation = 'short left' | 'short middle' | 'short right' | 'deep left' | 'deep middle' | 'deep right';
|
|
973
|
+
export type PassOutcome = 'completion' | 'incompletion' | 'interception';
|
|
974
|
+
export type PassParseStatus = 'complete' | 'partial' | 'invalid';
|
|
903
975
|
export type Play = {
|
|
904
976
|
id: string;
|
|
905
977
|
driveId: string;
|
|
@@ -973,6 +1045,72 @@ export type PlayerGameUsage = {
|
|
|
973
1045
|
team: string;
|
|
974
1046
|
position: string;
|
|
975
1047
|
};
|
|
1048
|
+
export type PlayerPassingGame = {
|
|
1049
|
+
attempts: number;
|
|
1050
|
+
completions: number;
|
|
1051
|
+
incompletions: number;
|
|
1052
|
+
interceptions: number;
|
|
1053
|
+
completionRate: (number) | null;
|
|
1054
|
+
/**
|
|
1055
|
+
* Number of attempts with non-null air yards, including zero-yard values.
|
|
1056
|
+
*/
|
|
1057
|
+
airYardsAttemptsAvailable: number;
|
|
1058
|
+
totalAirYards: (number) | null;
|
|
1059
|
+
averageDepthOfTarget: (number) | null;
|
|
1060
|
+
/**
|
|
1061
|
+
* Number of attempts with non-null total yards, including zero-yard
|
|
1062
|
+
* incompletions and interceptions.
|
|
1063
|
+
*/
|
|
1064
|
+
totalYardsAttemptsAvailable: number;
|
|
1065
|
+
totalYards: (number) | null;
|
|
1066
|
+
/**
|
|
1067
|
+
* Number of completed attempts with valid total yards and air yards to
|
|
1068
|
+
* calculate yards after catch, including zero-yard values.
|
|
1069
|
+
*/
|
|
1070
|
+
yardsAfterCatchAttemptsAvailable: number;
|
|
1071
|
+
totalYardsAfterCatch: (number) | null;
|
|
1072
|
+
averageYardsAfterCatch: (number) | null;
|
|
1073
|
+
gameId: number;
|
|
1074
|
+
season: number;
|
|
1075
|
+
week: number;
|
|
1076
|
+
seasonType: SeasonType;
|
|
1077
|
+
playerId: string;
|
|
1078
|
+
player: string;
|
|
1079
|
+
team: string;
|
|
1080
|
+
conference: (string) | null;
|
|
1081
|
+
opponent: string;
|
|
1082
|
+
};
|
|
1083
|
+
export type PlayerPassingSeason = {
|
|
1084
|
+
attempts: number;
|
|
1085
|
+
completions: number;
|
|
1086
|
+
incompletions: number;
|
|
1087
|
+
interceptions: number;
|
|
1088
|
+
completionRate: (number) | null;
|
|
1089
|
+
/**
|
|
1090
|
+
* Number of attempts with non-null air yards, including zero-yard values.
|
|
1091
|
+
*/
|
|
1092
|
+
airYardsAttemptsAvailable: number;
|
|
1093
|
+
totalAirYards: (number) | null;
|
|
1094
|
+
averageDepthOfTarget: (number) | null;
|
|
1095
|
+
/**
|
|
1096
|
+
* Number of attempts with non-null total yards, including zero-yard
|
|
1097
|
+
* incompletions and interceptions.
|
|
1098
|
+
*/
|
|
1099
|
+
totalYardsAttemptsAvailable: number;
|
|
1100
|
+
totalYards: (number) | null;
|
|
1101
|
+
/**
|
|
1102
|
+
* Number of completed attempts with valid total yards and air yards to
|
|
1103
|
+
* calculate yards after catch, including zero-yard values.
|
|
1104
|
+
*/
|
|
1105
|
+
yardsAfterCatchAttemptsAvailable: number;
|
|
1106
|
+
totalYardsAfterCatch: (number) | null;
|
|
1107
|
+
averageYardsAfterCatch: (number) | null;
|
|
1108
|
+
season: number;
|
|
1109
|
+
playerId: string;
|
|
1110
|
+
player: string;
|
|
1111
|
+
team: string;
|
|
1112
|
+
conference: (string) | null;
|
|
1113
|
+
};
|
|
976
1114
|
export type PlayerPPA = {
|
|
977
1115
|
player: string;
|
|
978
1116
|
team: string;
|
|
@@ -984,6 +1122,84 @@ export type PlayerPPAChartItem = {
|
|
|
984
1122
|
playNumber: number;
|
|
985
1123
|
avgPPA: number;
|
|
986
1124
|
};
|
|
1125
|
+
export type PlayerRushingGame = {
|
|
1126
|
+
attempts: number;
|
|
1127
|
+
rushingYardsAvailable: number;
|
|
1128
|
+
totalRushingYards: (number) | null;
|
|
1129
|
+
yardsPerCarry: (number) | null;
|
|
1130
|
+
individualAttempts: number;
|
|
1131
|
+
unattributedAttempts: number;
|
|
1132
|
+
sacks: number;
|
|
1133
|
+
kneels: number;
|
|
1134
|
+
teamRushes: number;
|
|
1135
|
+
multiCarrierAttempts: number;
|
|
1136
|
+
directionEligibleAttempts: number;
|
|
1137
|
+
directionAvailableAttempts: number;
|
|
1138
|
+
successRate: number;
|
|
1139
|
+
ppa: number;
|
|
1140
|
+
totalPpa: number;
|
|
1141
|
+
lineYards: number;
|
|
1142
|
+
lineYardsTotal: number;
|
|
1143
|
+
secondLevelYards: number;
|
|
1144
|
+
secondLevelYardsTotal: number;
|
|
1145
|
+
openFieldYards: number;
|
|
1146
|
+
openFieldYardsTotal: number;
|
|
1147
|
+
stuffRate: number;
|
|
1148
|
+
powerSuccess: number;
|
|
1149
|
+
explosiveness: number;
|
|
1150
|
+
directions: {
|
|
1151
|
+
unknown: RushingDirectionProduction;
|
|
1152
|
+
right: RushingDirectionProduction;
|
|
1153
|
+
middle: RushingDirectionProduction;
|
|
1154
|
+
left: RushingDirectionProduction;
|
|
1155
|
+
};
|
|
1156
|
+
gameId: number;
|
|
1157
|
+
season: number;
|
|
1158
|
+
week: number;
|
|
1159
|
+
seasonType: SeasonType;
|
|
1160
|
+
playerId: string;
|
|
1161
|
+
player: string;
|
|
1162
|
+
team: string;
|
|
1163
|
+
conference: (string) | null;
|
|
1164
|
+
opponent: string;
|
|
1165
|
+
};
|
|
1166
|
+
export type PlayerRushingSeason = {
|
|
1167
|
+
attempts: number;
|
|
1168
|
+
rushingYardsAvailable: number;
|
|
1169
|
+
totalRushingYards: (number) | null;
|
|
1170
|
+
yardsPerCarry: (number) | null;
|
|
1171
|
+
individualAttempts: number;
|
|
1172
|
+
unattributedAttempts: number;
|
|
1173
|
+
sacks: number;
|
|
1174
|
+
kneels: number;
|
|
1175
|
+
teamRushes: number;
|
|
1176
|
+
multiCarrierAttempts: number;
|
|
1177
|
+
directionEligibleAttempts: number;
|
|
1178
|
+
directionAvailableAttempts: number;
|
|
1179
|
+
successRate: number;
|
|
1180
|
+
ppa: number;
|
|
1181
|
+
totalPpa: number;
|
|
1182
|
+
lineYards: number;
|
|
1183
|
+
lineYardsTotal: number;
|
|
1184
|
+
secondLevelYards: number;
|
|
1185
|
+
secondLevelYardsTotal: number;
|
|
1186
|
+
openFieldYards: number;
|
|
1187
|
+
openFieldYardsTotal: number;
|
|
1188
|
+
stuffRate: number;
|
|
1189
|
+
powerSuccess: number;
|
|
1190
|
+
explosiveness: number;
|
|
1191
|
+
directions: {
|
|
1192
|
+
unknown: RushingDirectionProduction;
|
|
1193
|
+
right: RushingDirectionProduction;
|
|
1194
|
+
middle: RushingDirectionProduction;
|
|
1195
|
+
left: RushingDirectionProduction;
|
|
1196
|
+
};
|
|
1197
|
+
season: number;
|
|
1198
|
+
playerId: string;
|
|
1199
|
+
player: string;
|
|
1200
|
+
team: string;
|
|
1201
|
+
conference: (string) | null;
|
|
1202
|
+
};
|
|
987
1203
|
export type PlayerSearchResult = {
|
|
988
1204
|
id: string;
|
|
989
1205
|
team: string;
|
|
@@ -1379,6 +1595,65 @@ export type RosterPlayer = {
|
|
|
1379
1595
|
homeCountyFIPS: (string) | null;
|
|
1380
1596
|
recruitIds: Array<(string)> | null;
|
|
1381
1597
|
};
|
|
1598
|
+
export type RushAttributionStatus = 'individual' | 'team' | 'multi_carrier' | 'unmatched' | 'ambiguous' | 'conflict' | 'unlinked';
|
|
1599
|
+
export type RushDirection = 'left' | 'middle' | 'right';
|
|
1600
|
+
export type RushingDirectionProduction = {
|
|
1601
|
+
carries: number;
|
|
1602
|
+
yards: number;
|
|
1603
|
+
yardsPerCarry: number;
|
|
1604
|
+
successRate: number;
|
|
1605
|
+
ppa: number;
|
|
1606
|
+
totalPpa: number;
|
|
1607
|
+
lineYards: number;
|
|
1608
|
+
lineYardsTotal: number;
|
|
1609
|
+
secondLevelYards: number;
|
|
1610
|
+
secondLevelYardsTotal: number;
|
|
1611
|
+
openFieldYards: number;
|
|
1612
|
+
openFieldYardsTotal: number;
|
|
1613
|
+
stuffRate: number;
|
|
1614
|
+
powerSuccess: number;
|
|
1615
|
+
explosiveness: number;
|
|
1616
|
+
};
|
|
1617
|
+
export type RushingPlay = {
|
|
1618
|
+
gameId: number;
|
|
1619
|
+
playId: string;
|
|
1620
|
+
driveId: string;
|
|
1621
|
+
season: number;
|
|
1622
|
+
week: number;
|
|
1623
|
+
seasonType: SeasonType;
|
|
1624
|
+
offenseId: number;
|
|
1625
|
+
offense: string;
|
|
1626
|
+
offenseConference: (string) | null;
|
|
1627
|
+
defenseId: number;
|
|
1628
|
+
defense: string;
|
|
1629
|
+
defenseConference: (string) | null;
|
|
1630
|
+
period: number;
|
|
1631
|
+
clock: RushingPlayClock;
|
|
1632
|
+
down: number;
|
|
1633
|
+
distance: number;
|
|
1634
|
+
playText: (string) | null;
|
|
1635
|
+
startYardline: number;
|
|
1636
|
+
startYardsToGoal: (number) | null;
|
|
1637
|
+
rusherId: (string) | null;
|
|
1638
|
+
rusher: (string) | null;
|
|
1639
|
+
rushDirection: ((RushDirection) | null);
|
|
1640
|
+
rushingYards: (number) | null;
|
|
1641
|
+
rusherYards: (number) | null;
|
|
1642
|
+
isRushingTouchdown: (boolean) | null;
|
|
1643
|
+
isSack: boolean;
|
|
1644
|
+
isKneel: boolean;
|
|
1645
|
+
isTeamRush: boolean;
|
|
1646
|
+
attributionStatus: RushAttributionStatus;
|
|
1647
|
+
directionAnalysisEligible: boolean;
|
|
1648
|
+
parseStatus: RushParseStatus;
|
|
1649
|
+
ppa: (number) | null;
|
|
1650
|
+
success: (boolean) | null;
|
|
1651
|
+
};
|
|
1652
|
+
export type RushingPlayClock = {
|
|
1653
|
+
minutes: number;
|
|
1654
|
+
seconds: number;
|
|
1655
|
+
};
|
|
1656
|
+
export type RushParseStatus = 'complete' | 'partial' | 'invalid';
|
|
1382
1657
|
export type ScoreboardGame = {
|
|
1383
1658
|
id: number;
|
|
1384
1659
|
startDate: string;
|
|
@@ -1575,6 +1850,24 @@ export type TeamHavoc = {
|
|
|
1575
1850
|
frontSeven: number;
|
|
1576
1851
|
db: number;
|
|
1577
1852
|
};
|
|
1853
|
+
export type TeamPassingGame = {
|
|
1854
|
+
gameId: number;
|
|
1855
|
+
season: number;
|
|
1856
|
+
week: number;
|
|
1857
|
+
seasonType: SeasonType;
|
|
1858
|
+
team: string;
|
|
1859
|
+
conference: (string) | null;
|
|
1860
|
+
opponent: string;
|
|
1861
|
+
offense: PassingProduction;
|
|
1862
|
+
defense: PassingProduction;
|
|
1863
|
+
};
|
|
1864
|
+
export type TeamPassingSeason = {
|
|
1865
|
+
season: number;
|
|
1866
|
+
team: string;
|
|
1867
|
+
conference: (string) | null;
|
|
1868
|
+
offense: PassingProduction;
|
|
1869
|
+
defense: PassingProduction;
|
|
1870
|
+
};
|
|
1578
1871
|
export type TeamPPA = {
|
|
1579
1872
|
team: string;
|
|
1580
1873
|
plays: number;
|
|
@@ -1610,6 +1903,58 @@ export type TeamRecruitingRanking = {
|
|
|
1610
1903
|
team: string;
|
|
1611
1904
|
points: number;
|
|
1612
1905
|
};
|
|
1906
|
+
export type TeamRushingGame = {
|
|
1907
|
+
gameId: number;
|
|
1908
|
+
season: number;
|
|
1909
|
+
week: number;
|
|
1910
|
+
seasonType: SeasonType;
|
|
1911
|
+
team: string;
|
|
1912
|
+
conference: (string) | null;
|
|
1913
|
+
opponent: string;
|
|
1914
|
+
offense: TeamRushingProduction;
|
|
1915
|
+
defense: TeamRushingProduction;
|
|
1916
|
+
};
|
|
1917
|
+
export type TeamRushingProduction = {
|
|
1918
|
+
attempts: number;
|
|
1919
|
+
rushingYardsAvailable: number;
|
|
1920
|
+
totalRushingYards: (number) | null;
|
|
1921
|
+
yardsPerCarry: (number) | null;
|
|
1922
|
+
individualAttempts: number;
|
|
1923
|
+
unattributedAttempts: number;
|
|
1924
|
+
sacks: number;
|
|
1925
|
+
kneels: number;
|
|
1926
|
+
teamRushes: number;
|
|
1927
|
+
multiCarrierAttempts: number;
|
|
1928
|
+
directionEligibleAttempts: number;
|
|
1929
|
+
directionAvailableAttempts: number;
|
|
1930
|
+
successRate: number;
|
|
1931
|
+
ppa: number;
|
|
1932
|
+
totalPpa: number;
|
|
1933
|
+
lineYards: number;
|
|
1934
|
+
lineYardsTotal: number;
|
|
1935
|
+
secondLevelYards: number;
|
|
1936
|
+
secondLevelYardsTotal: number;
|
|
1937
|
+
openFieldYards: number;
|
|
1938
|
+
openFieldYardsTotal: number;
|
|
1939
|
+
stuffRate: number;
|
|
1940
|
+
powerSuccess: number;
|
|
1941
|
+
explosiveness: number;
|
|
1942
|
+
directions: {
|
|
1943
|
+
unknown: RushingDirectionProduction;
|
|
1944
|
+
right: RushingDirectionProduction;
|
|
1945
|
+
middle: RushingDirectionProduction;
|
|
1946
|
+
left: RushingDirectionProduction;
|
|
1947
|
+
};
|
|
1948
|
+
touchdownStatusAvailable: number;
|
|
1949
|
+
rushingTouchdowns: number;
|
|
1950
|
+
};
|
|
1951
|
+
export type TeamRushingSeason = {
|
|
1952
|
+
season: number;
|
|
1953
|
+
team: string;
|
|
1954
|
+
conference: (string) | null;
|
|
1955
|
+
offense: TeamRushingProduction;
|
|
1956
|
+
defense: TeamRushingProduction;
|
|
1957
|
+
};
|
|
1613
1958
|
export type TeamRushingStats = {
|
|
1614
1959
|
team: string;
|
|
1615
1960
|
powerSuccess: number;
|
|
@@ -2249,6 +2594,200 @@ export type GetGameHavocStatsData = {
|
|
|
2249
2594
|
};
|
|
2250
2595
|
export type GetGameHavocStatsResponse = (Array<GameHavocStats>);
|
|
2251
2596
|
export type GetGameHavocStatsError = unknown;
|
|
2597
|
+
export type GetRushingPlaysData = {
|
|
2598
|
+
query?: {
|
|
2599
|
+
/**
|
|
2600
|
+
* Rusher attribution status.
|
|
2601
|
+
*/
|
|
2602
|
+
attributionStatus?: RushAttributionStatus;
|
|
2603
|
+
/**
|
|
2604
|
+
* Division classification. Defaults to `fbs`.
|
|
2605
|
+
*/
|
|
2606
|
+
classification?: DivisionClassification;
|
|
2607
|
+
/**
|
|
2608
|
+
* Conference name or abbreviation on either side of the rush.
|
|
2609
|
+
*/
|
|
2610
|
+
conference?: string;
|
|
2611
|
+
/**
|
|
2612
|
+
* Defending team name.
|
|
2613
|
+
*/
|
|
2614
|
+
defense?: string;
|
|
2615
|
+
/**
|
|
2616
|
+
* Filters attempts by ordinary direction-analysis eligibility.
|
|
2617
|
+
*/
|
|
2618
|
+
directionAnalysisEligible?: boolean;
|
|
2619
|
+
/**
|
|
2620
|
+
* Game ID.
|
|
2621
|
+
*/
|
|
2622
|
+
gameId?: number;
|
|
2623
|
+
/**
|
|
2624
|
+
* Filters kneel attempts.
|
|
2625
|
+
*/
|
|
2626
|
+
isKneel?: boolean;
|
|
2627
|
+
/**
|
|
2628
|
+
* Filters known rushing touchdown results.
|
|
2629
|
+
*/
|
|
2630
|
+
isRushingTouchdown?: boolean;
|
|
2631
|
+
/**
|
|
2632
|
+
* Filters sack attempts.
|
|
2633
|
+
*/
|
|
2634
|
+
isSack?: boolean;
|
|
2635
|
+
/**
|
|
2636
|
+
* Filters team-only rushing attempts.
|
|
2637
|
+
*/
|
|
2638
|
+
isTeamRush?: boolean;
|
|
2639
|
+
/**
|
|
2640
|
+
* Rushing offense team name.
|
|
2641
|
+
*/
|
|
2642
|
+
offense?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* Rushing direction.
|
|
2645
|
+
*/
|
|
2646
|
+
rushDirection?: RushDirection;
|
|
2647
|
+
/**
|
|
2648
|
+
* Rusher athlete ID.
|
|
2649
|
+
*/
|
|
2650
|
+
rusherId?: string;
|
|
2651
|
+
/**
|
|
2652
|
+
* Season type.
|
|
2653
|
+
*/
|
|
2654
|
+
seasonType?: SeasonType;
|
|
2655
|
+
/**
|
|
2656
|
+
* Team name on either side of the rush; either team or week is required with year.
|
|
2657
|
+
*/
|
|
2658
|
+
team?: string;
|
|
2659
|
+
/**
|
|
2660
|
+
* Week number. Requires year; either team or week is required with year.
|
|
2661
|
+
*/
|
|
2662
|
+
week?: number;
|
|
2663
|
+
/**
|
|
2664
|
+
* Season year. Requires team or week.
|
|
2665
|
+
*/
|
|
2666
|
+
year?: number;
|
|
2667
|
+
};
|
|
2668
|
+
};
|
|
2669
|
+
export type GetRushingPlaysResponse = (Array<RushingPlay>);
|
|
2670
|
+
export type GetRushingPlaysError = unknown;
|
|
2671
|
+
export type GetPlayerRushingBySeasonData = {
|
|
2672
|
+
query?: {
|
|
2673
|
+
/**
|
|
2674
|
+
* Division classification. Defaults to `fbs`.
|
|
2675
|
+
*/
|
|
2676
|
+
classification?: DivisionClassification;
|
|
2677
|
+
/**
|
|
2678
|
+
* Conference name or abbreviation.
|
|
2679
|
+
*/
|
|
2680
|
+
conference?: string;
|
|
2681
|
+
/**
|
|
2682
|
+
* Rusher athlete ID. Required unless year is specified.
|
|
2683
|
+
*/
|
|
2684
|
+
rusherId?: string;
|
|
2685
|
+
/**
|
|
2686
|
+
* Season type.
|
|
2687
|
+
*/
|
|
2688
|
+
seasonType?: SeasonType;
|
|
2689
|
+
/**
|
|
2690
|
+
* Team name.
|
|
2691
|
+
*/
|
|
2692
|
+
team?: string;
|
|
2693
|
+
/**
|
|
2694
|
+
* Season year. Required unless rusherId is specified.
|
|
2695
|
+
*/
|
|
2696
|
+
year?: number;
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
export type GetPlayerRushingBySeasonResponse = (Array<PlayerRushingSeason>);
|
|
2700
|
+
export type GetPlayerRushingBySeasonError = unknown;
|
|
2701
|
+
export type GetPlayerRushingByGameData = {
|
|
2702
|
+
query?: {
|
|
2703
|
+
/**
|
|
2704
|
+
* Division classification. Defaults to `fbs`.
|
|
2705
|
+
*/
|
|
2706
|
+
classification?: DivisionClassification;
|
|
2707
|
+
/**
|
|
2708
|
+
* Conference name or abbreviation.
|
|
2709
|
+
*/
|
|
2710
|
+
conference?: string;
|
|
2711
|
+
/**
|
|
2712
|
+
* Rusher athlete ID. Required unless year is specified.
|
|
2713
|
+
*/
|
|
2714
|
+
rusherId?: string;
|
|
2715
|
+
/**
|
|
2716
|
+
* Season type.
|
|
2717
|
+
*/
|
|
2718
|
+
seasonType?: SeasonType;
|
|
2719
|
+
/**
|
|
2720
|
+
* Team name; either team or week is required with year.
|
|
2721
|
+
*/
|
|
2722
|
+
team?: string;
|
|
2723
|
+
/**
|
|
2724
|
+
* Week number. Requires year; either team or week is required with year.
|
|
2725
|
+
*/
|
|
2726
|
+
week?: number;
|
|
2727
|
+
/**
|
|
2728
|
+
* Season year. Requires team or week; optional when rusherId is specified alone.
|
|
2729
|
+
*/
|
|
2730
|
+
year?: number;
|
|
2731
|
+
};
|
|
2732
|
+
};
|
|
2733
|
+
export type GetPlayerRushingByGameResponse = (Array<PlayerRushingGame>);
|
|
2734
|
+
export type GetPlayerRushingByGameError = unknown;
|
|
2735
|
+
export type GetTeamRushingBySeasonData = {
|
|
2736
|
+
query?: {
|
|
2737
|
+
/**
|
|
2738
|
+
* Division classification. Defaults to `fbs`.
|
|
2739
|
+
*/
|
|
2740
|
+
classification?: DivisionClassification;
|
|
2741
|
+
/**
|
|
2742
|
+
* Conference name or abbreviation.
|
|
2743
|
+
*/
|
|
2744
|
+
conference?: string;
|
|
2745
|
+
/**
|
|
2746
|
+
* Season type.
|
|
2747
|
+
*/
|
|
2748
|
+
seasonType?: SeasonType;
|
|
2749
|
+
/**
|
|
2750
|
+
* Team name. Required unless year is specified.
|
|
2751
|
+
*/
|
|
2752
|
+
team?: string;
|
|
2753
|
+
/**
|
|
2754
|
+
* Season year. Required unless team is specified.
|
|
2755
|
+
*/
|
|
2756
|
+
year?: number;
|
|
2757
|
+
};
|
|
2758
|
+
};
|
|
2759
|
+
export type GetTeamRushingBySeasonResponse = (Array<TeamRushingSeason>);
|
|
2760
|
+
export type GetTeamRushingBySeasonError = unknown;
|
|
2761
|
+
export type GetTeamRushingByGameData = {
|
|
2762
|
+
query: {
|
|
2763
|
+
/**
|
|
2764
|
+
* Division classification. Defaults to `fbs`.
|
|
2765
|
+
*/
|
|
2766
|
+
classification?: DivisionClassification;
|
|
2767
|
+
/**
|
|
2768
|
+
* Conference name or abbreviation.
|
|
2769
|
+
*/
|
|
2770
|
+
conference?: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* Season type.
|
|
2773
|
+
*/
|
|
2774
|
+
seasonType?: SeasonType;
|
|
2775
|
+
/**
|
|
2776
|
+
* Team name. Either team or week is required.
|
|
2777
|
+
*/
|
|
2778
|
+
team?: string;
|
|
2779
|
+
/**
|
|
2780
|
+
* Week number. Either team or week is required.
|
|
2781
|
+
*/
|
|
2782
|
+
week?: number;
|
|
2783
|
+
/**
|
|
2784
|
+
* Season year. Required.
|
|
2785
|
+
*/
|
|
2786
|
+
year: number;
|
|
2787
|
+
};
|
|
2788
|
+
};
|
|
2789
|
+
export type GetTeamRushingByGameResponse = (Array<TeamRushingGame>);
|
|
2790
|
+
export type GetTeamRushingByGameError = unknown;
|
|
2252
2791
|
export type GetRecruitsData = {
|
|
2253
2792
|
query?: {
|
|
2254
2793
|
/**
|
|
@@ -2712,6 +3251,180 @@ export type GetTransferPortalData = {
|
|
|
2712
3251
|
};
|
|
2713
3252
|
export type GetTransferPortalResponse = (Array<PlayerTransfer>);
|
|
2714
3253
|
export type GetTransferPortalError = unknown;
|
|
3254
|
+
export type GetPassingPlaysData = {
|
|
3255
|
+
query: {
|
|
3256
|
+
/**
|
|
3257
|
+
* Division classification. Defaults to `fbs`.
|
|
3258
|
+
*/
|
|
3259
|
+
classification?: DivisionClassification;
|
|
3260
|
+
/**
|
|
3261
|
+
* Conference name or abbreviation on either side of the pass.
|
|
3262
|
+
*/
|
|
3263
|
+
conference?: string;
|
|
3264
|
+
/**
|
|
3265
|
+
* Defensive team name.
|
|
3266
|
+
*/
|
|
3267
|
+
defense?: string;
|
|
3268
|
+
/**
|
|
3269
|
+
* Game ID.
|
|
3270
|
+
*/
|
|
3271
|
+
gameId?: number;
|
|
3272
|
+
/**
|
|
3273
|
+
* Offensive team name.
|
|
3274
|
+
*/
|
|
3275
|
+
offense?: string;
|
|
3276
|
+
/**
|
|
3277
|
+
* Pass outcome.
|
|
3278
|
+
*/
|
|
3279
|
+
outcome?: PassOutcome;
|
|
3280
|
+
/**
|
|
3281
|
+
* Passer athlete ID.
|
|
3282
|
+
*/
|
|
3283
|
+
passerId?: string;
|
|
3284
|
+
/**
|
|
3285
|
+
* Season type.
|
|
3286
|
+
*/
|
|
3287
|
+
seasonType?: SeasonType;
|
|
3288
|
+
/**
|
|
3289
|
+
* Intended target athlete ID.
|
|
3290
|
+
*/
|
|
3291
|
+
targetId?: string;
|
|
3292
|
+
/**
|
|
3293
|
+
* Team name on either side of the pass. Either team or week is required.
|
|
3294
|
+
*/
|
|
3295
|
+
team?: string;
|
|
3296
|
+
/**
|
|
3297
|
+
* Week number. Either team or week is required.
|
|
3298
|
+
*/
|
|
3299
|
+
week?: number;
|
|
3300
|
+
/**
|
|
3301
|
+
* Season year.
|
|
3302
|
+
*/
|
|
3303
|
+
year: number;
|
|
3304
|
+
};
|
|
3305
|
+
};
|
|
3306
|
+
export type GetPassingPlaysResponse = (Array<PassingPlay>);
|
|
3307
|
+
export type GetPassingPlaysError = unknown;
|
|
3308
|
+
export type GetPlayerPassingBySeasonData = {
|
|
3309
|
+
query?: {
|
|
3310
|
+
/**
|
|
3311
|
+
* Division classification. Defaults to `fbs`.
|
|
3312
|
+
*/
|
|
3313
|
+
classification?: DivisionClassification;
|
|
3314
|
+
/**
|
|
3315
|
+
* Conference name or abbreviation.
|
|
3316
|
+
*/
|
|
3317
|
+
conference?: string;
|
|
3318
|
+
/**
|
|
3319
|
+
* Passer athlete ID. Required unless year is specified.
|
|
3320
|
+
*/
|
|
3321
|
+
passerId?: string;
|
|
3322
|
+
/**
|
|
3323
|
+
* Season type.
|
|
3324
|
+
*/
|
|
3325
|
+
seasonType?: SeasonType;
|
|
3326
|
+
/**
|
|
3327
|
+
* Team name.
|
|
3328
|
+
*/
|
|
3329
|
+
team?: string;
|
|
3330
|
+
/**
|
|
3331
|
+
* Season year. Required unless passerId is specified.
|
|
3332
|
+
*/
|
|
3333
|
+
year?: number;
|
|
3334
|
+
};
|
|
3335
|
+
};
|
|
3336
|
+
export type GetPlayerPassingBySeasonResponse = (Array<PlayerPassingSeason>);
|
|
3337
|
+
export type GetPlayerPassingBySeasonError = unknown;
|
|
3338
|
+
export type GetPlayerPassingByGameData = {
|
|
3339
|
+
query: {
|
|
3340
|
+
/**
|
|
3341
|
+
* Division classification. Defaults to `fbs`.
|
|
3342
|
+
*/
|
|
3343
|
+
classification?: DivisionClassification;
|
|
3344
|
+
/**
|
|
3345
|
+
* Conference name or abbreviation.
|
|
3346
|
+
*/
|
|
3347
|
+
conference?: string;
|
|
3348
|
+
/**
|
|
3349
|
+
* Passer athlete ID. Either passerId, team, or week is required.
|
|
3350
|
+
*/
|
|
3351
|
+
passerId?: string;
|
|
3352
|
+
/**
|
|
3353
|
+
* Season type.
|
|
3354
|
+
*/
|
|
3355
|
+
seasonType?: SeasonType;
|
|
3356
|
+
/**
|
|
3357
|
+
* Team name. Either passerId, team, or week is required.
|
|
3358
|
+
*/
|
|
3359
|
+
team?: string;
|
|
3360
|
+
/**
|
|
3361
|
+
* Week number. Either passerId, team, or week is required.
|
|
3362
|
+
*/
|
|
3363
|
+
week?: number;
|
|
3364
|
+
/**
|
|
3365
|
+
* Season year. Required.
|
|
3366
|
+
*/
|
|
3367
|
+
year: number;
|
|
3368
|
+
};
|
|
3369
|
+
};
|
|
3370
|
+
export type GetPlayerPassingByGameResponse = (Array<PlayerPassingGame>);
|
|
3371
|
+
export type GetPlayerPassingByGameError = unknown;
|
|
3372
|
+
export type GetTeamPassingBySeasonData = {
|
|
3373
|
+
query?: {
|
|
3374
|
+
/**
|
|
3375
|
+
* Division classification. Defaults to `fbs`.
|
|
3376
|
+
*/
|
|
3377
|
+
classification?: DivisionClassification;
|
|
3378
|
+
/**
|
|
3379
|
+
* Conference name or abbreviation.
|
|
3380
|
+
*/
|
|
3381
|
+
conference?: string;
|
|
3382
|
+
/**
|
|
3383
|
+
* Season type.
|
|
3384
|
+
*/
|
|
3385
|
+
seasonType?: SeasonType;
|
|
3386
|
+
/**
|
|
3387
|
+
* Team name. Required unless year is specified.
|
|
3388
|
+
*/
|
|
3389
|
+
team?: string;
|
|
3390
|
+
/**
|
|
3391
|
+
* Season year. Required unless team is specified.
|
|
3392
|
+
*/
|
|
3393
|
+
year?: number;
|
|
3394
|
+
};
|
|
3395
|
+
};
|
|
3396
|
+
export type GetTeamPassingBySeasonResponse = (Array<TeamPassingSeason>);
|
|
3397
|
+
export type GetTeamPassingBySeasonError = unknown;
|
|
3398
|
+
export type GetTeamPassingByGameData = {
|
|
3399
|
+
query: {
|
|
3400
|
+
/**
|
|
3401
|
+
* Division classification. Defaults to `fbs`.
|
|
3402
|
+
*/
|
|
3403
|
+
classification?: DivisionClassification;
|
|
3404
|
+
/**
|
|
3405
|
+
* Conference name or abbreviation.
|
|
3406
|
+
*/
|
|
3407
|
+
conference?: string;
|
|
3408
|
+
/**
|
|
3409
|
+
* Season type.
|
|
3410
|
+
*/
|
|
3411
|
+
seasonType?: SeasonType;
|
|
3412
|
+
/**
|
|
3413
|
+
* Team name. Either team or week is required.
|
|
3414
|
+
*/
|
|
3415
|
+
team?: string;
|
|
3416
|
+
/**
|
|
3417
|
+
* Week number. Either team or week is required.
|
|
3418
|
+
*/
|
|
3419
|
+
week?: number;
|
|
3420
|
+
/**
|
|
3421
|
+
* Season year. Required.
|
|
3422
|
+
*/
|
|
3423
|
+
year: number;
|
|
3424
|
+
};
|
|
3425
|
+
};
|
|
3426
|
+
export type GetTeamPassingByGameResponse = (Array<TeamPassingGame>);
|
|
3427
|
+
export type GetTeamPassingByGameError = unknown;
|
|
2715
3428
|
export type GetPredictedPointsData = {
|
|
2716
3429
|
query: {
|
|
2717
3430
|
/**
|