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/src/types.gen.ts CHANGED
@@ -970,6 +970,86 @@ export type MatchupGame = {
970
970
 
971
971
  export type MediaType = 'tv' | 'radio' | 'web' | 'ppv' | 'mobile';
972
972
 
973
+ export type PassDepth = 'short' | 'deep';
974
+
975
+ export type PassDirection = 'left' | 'middle' | 'right';
976
+
977
+ export type PassingPlay = {
978
+ gameId: number;
979
+ playId: string;
980
+ driveId: string;
981
+ season: number;
982
+ week: number;
983
+ seasonType: SeasonType;
984
+ offenseId: number;
985
+ offense: string;
986
+ offenseConference: (string) | null;
987
+ defenseId: number;
988
+ defense: string;
989
+ defenseConference: (string) | null;
990
+ period: number;
991
+ clock: PassingPlayClock;
992
+ down: number;
993
+ distance: number;
994
+ playText: (string) | null;
995
+ passerId: (string) | null;
996
+ passer: (string) | null;
997
+ targetId: (string) | null;
998
+ target: (string) | null;
999
+ outcome: PassOutcome;
1000
+ airYards: (number) | null;
1001
+ passDepth: ((PassDepth) | null);
1002
+ passDirection: ((PassDirection) | null);
1003
+ passLocation: ((PassLocation) | null);
1004
+ totalYards: (number) | null;
1005
+ yardsAfterCatch: (number) | null;
1006
+ startYardline: number;
1007
+ startYardsToGoal: number;
1008
+ targetYardsToGoal: (number) | null;
1009
+ isSpike: boolean;
1010
+ isThrowaway: boolean;
1011
+ isIntentionalGrounding: boolean;
1012
+ parseStatus: PassParseStatus;
1013
+ };
1014
+
1015
+ export type PassingPlayClock = {
1016
+ minutes: number;
1017
+ seconds: number;
1018
+ };
1019
+
1020
+ export type PassingProduction = {
1021
+ attempts: number;
1022
+ completions: number;
1023
+ incompletions: number;
1024
+ interceptions: number;
1025
+ completionRate: (number) | null;
1026
+ /**
1027
+ * Number of attempts with non-null air yards, including zero-yard values.
1028
+ */
1029
+ airYardsAttemptsAvailable: number;
1030
+ totalAirYards: (number) | null;
1031
+ averageDepthOfTarget: (number) | null;
1032
+ /**
1033
+ * Number of attempts with non-null total yards, including zero-yard
1034
+ * incompletions and interceptions.
1035
+ */
1036
+ totalYardsAttemptsAvailable: number;
1037
+ totalYards: (number) | null;
1038
+ /**
1039
+ * Number of completed attempts with valid total yards and air yards to
1040
+ * calculate yards after catch, including zero-yard values.
1041
+ */
1042
+ yardsAfterCatchAttemptsAvailable: number;
1043
+ totalYardsAfterCatch: (number) | null;
1044
+ averageYardsAfterCatch: (number) | null;
1045
+ };
1046
+
1047
+ export type PassLocation = 'short left' | 'short middle' | 'short right' | 'deep left' | 'deep middle' | 'deep right';
1048
+
1049
+ export type PassOutcome = 'completion' | 'incompletion' | 'interception';
1050
+
1051
+ export type PassParseStatus = 'complete' | 'partial' | 'invalid';
1052
+
973
1053
  export type Play = {
974
1054
  id: string;
975
1055
  driveId: string;
@@ -1047,6 +1127,74 @@ export type PlayerGameUsage = {
1047
1127
  position: string;
1048
1128
  };
1049
1129
 
1130
+ export type PlayerPassingGame = {
1131
+ attempts: number;
1132
+ completions: number;
1133
+ incompletions: number;
1134
+ interceptions: number;
1135
+ completionRate: (number) | null;
1136
+ /**
1137
+ * Number of attempts with non-null air yards, including zero-yard values.
1138
+ */
1139
+ airYardsAttemptsAvailable: number;
1140
+ totalAirYards: (number) | null;
1141
+ averageDepthOfTarget: (number) | null;
1142
+ /**
1143
+ * Number of attempts with non-null total yards, including zero-yard
1144
+ * incompletions and interceptions.
1145
+ */
1146
+ totalYardsAttemptsAvailable: number;
1147
+ totalYards: (number) | null;
1148
+ /**
1149
+ * Number of completed attempts with valid total yards and air yards to
1150
+ * calculate yards after catch, including zero-yard values.
1151
+ */
1152
+ yardsAfterCatchAttemptsAvailable: number;
1153
+ totalYardsAfterCatch: (number) | null;
1154
+ averageYardsAfterCatch: (number) | null;
1155
+ gameId: number;
1156
+ season: number;
1157
+ week: number;
1158
+ seasonType: SeasonType;
1159
+ playerId: string;
1160
+ player: string;
1161
+ team: string;
1162
+ conference: (string) | null;
1163
+ opponent: string;
1164
+ };
1165
+
1166
+ export type PlayerPassingSeason = {
1167
+ attempts: number;
1168
+ completions: number;
1169
+ incompletions: number;
1170
+ interceptions: number;
1171
+ completionRate: (number) | null;
1172
+ /**
1173
+ * Number of attempts with non-null air yards, including zero-yard values.
1174
+ */
1175
+ airYardsAttemptsAvailable: number;
1176
+ totalAirYards: (number) | null;
1177
+ averageDepthOfTarget: (number) | null;
1178
+ /**
1179
+ * Number of attempts with non-null total yards, including zero-yard
1180
+ * incompletions and interceptions.
1181
+ */
1182
+ totalYardsAttemptsAvailable: number;
1183
+ totalYards: (number) | null;
1184
+ /**
1185
+ * Number of completed attempts with valid total yards and air yards to
1186
+ * calculate yards after catch, including zero-yard values.
1187
+ */
1188
+ yardsAfterCatchAttemptsAvailable: number;
1189
+ totalYardsAfterCatch: (number) | null;
1190
+ averageYardsAfterCatch: (number) | null;
1191
+ season: number;
1192
+ playerId: string;
1193
+ player: string;
1194
+ team: string;
1195
+ conference: (string) | null;
1196
+ };
1197
+
1050
1198
  export type PlayerPPA = {
1051
1199
  player: string;
1052
1200
  team: string;
@@ -1060,6 +1208,86 @@ export type PlayerPPAChartItem = {
1060
1208
  avgPPA: number;
1061
1209
  };
1062
1210
 
1211
+ export type PlayerRushingGame = {
1212
+ attempts: number;
1213
+ rushingYardsAvailable: number;
1214
+ totalRushingYards: (number) | null;
1215
+ yardsPerCarry: (number) | null;
1216
+ individualAttempts: number;
1217
+ unattributedAttempts: number;
1218
+ sacks: number;
1219
+ kneels: number;
1220
+ teamRushes: number;
1221
+ multiCarrierAttempts: number;
1222
+ directionEligibleAttempts: number;
1223
+ directionAvailableAttempts: number;
1224
+ successRate: number;
1225
+ ppa: number;
1226
+ totalPpa: number;
1227
+ lineYards: number;
1228
+ lineYardsTotal: number;
1229
+ secondLevelYards: number;
1230
+ secondLevelYardsTotal: number;
1231
+ openFieldYards: number;
1232
+ openFieldYardsTotal: number;
1233
+ stuffRate: number;
1234
+ powerSuccess: number;
1235
+ explosiveness: number;
1236
+ directions: {
1237
+ unknown: RushingDirectionProduction;
1238
+ right: RushingDirectionProduction;
1239
+ middle: RushingDirectionProduction;
1240
+ left: RushingDirectionProduction;
1241
+ };
1242
+ gameId: number;
1243
+ season: number;
1244
+ week: number;
1245
+ seasonType: SeasonType;
1246
+ playerId: string;
1247
+ player: string;
1248
+ team: string;
1249
+ conference: (string) | null;
1250
+ opponent: string;
1251
+ };
1252
+
1253
+ export type PlayerRushingSeason = {
1254
+ attempts: number;
1255
+ rushingYardsAvailable: number;
1256
+ totalRushingYards: (number) | null;
1257
+ yardsPerCarry: (number) | null;
1258
+ individualAttempts: number;
1259
+ unattributedAttempts: number;
1260
+ sacks: number;
1261
+ kneels: number;
1262
+ teamRushes: number;
1263
+ multiCarrierAttempts: number;
1264
+ directionEligibleAttempts: number;
1265
+ directionAvailableAttempts: number;
1266
+ successRate: number;
1267
+ ppa: number;
1268
+ totalPpa: number;
1269
+ lineYards: number;
1270
+ lineYardsTotal: number;
1271
+ secondLevelYards: number;
1272
+ secondLevelYardsTotal: number;
1273
+ openFieldYards: number;
1274
+ openFieldYardsTotal: number;
1275
+ stuffRate: number;
1276
+ powerSuccess: number;
1277
+ explosiveness: number;
1278
+ directions: {
1279
+ unknown: RushingDirectionProduction;
1280
+ right: RushingDirectionProduction;
1281
+ middle: RushingDirectionProduction;
1282
+ left: RushingDirectionProduction;
1283
+ };
1284
+ season: number;
1285
+ playerId: string;
1286
+ player: string;
1287
+ team: string;
1288
+ conference: (string) | null;
1289
+ };
1290
+
1063
1291
  export type PlayerSearchResult = {
1064
1292
  id: string;
1065
1293
  team: string;
@@ -1498,6 +1726,71 @@ export type RosterPlayer = {
1498
1726
  recruitIds: Array<(string)> | null;
1499
1727
  };
1500
1728
 
1729
+ export type RushAttributionStatus = 'individual' | 'team' | 'multi_carrier' | 'unmatched' | 'ambiguous' | 'conflict' | 'unlinked';
1730
+
1731
+ export type RushDirection = 'left' | 'middle' | 'right';
1732
+
1733
+ export type RushingDirectionProduction = {
1734
+ carries: number;
1735
+ yards: number;
1736
+ yardsPerCarry: number;
1737
+ successRate: number;
1738
+ ppa: number;
1739
+ totalPpa: number;
1740
+ lineYards: number;
1741
+ lineYardsTotal: number;
1742
+ secondLevelYards: number;
1743
+ secondLevelYardsTotal: number;
1744
+ openFieldYards: number;
1745
+ openFieldYardsTotal: number;
1746
+ stuffRate: number;
1747
+ powerSuccess: number;
1748
+ explosiveness: number;
1749
+ };
1750
+
1751
+ export type RushingPlay = {
1752
+ gameId: number;
1753
+ playId: string;
1754
+ driveId: string;
1755
+ season: number;
1756
+ week: number;
1757
+ seasonType: SeasonType;
1758
+ offenseId: number;
1759
+ offense: string;
1760
+ offenseConference: (string) | null;
1761
+ defenseId: number;
1762
+ defense: string;
1763
+ defenseConference: (string) | null;
1764
+ period: number;
1765
+ clock: RushingPlayClock;
1766
+ down: number;
1767
+ distance: number;
1768
+ playText: (string) | null;
1769
+ startYardline: number;
1770
+ startYardsToGoal: (number) | null;
1771
+ rusherId: (string) | null;
1772
+ rusher: (string) | null;
1773
+ rushDirection: ((RushDirection) | null);
1774
+ rushingYards: (number) | null;
1775
+ rusherYards: (number) | null;
1776
+ isRushingTouchdown: (boolean) | null;
1777
+ isSack: boolean;
1778
+ isKneel: boolean;
1779
+ isTeamRush: boolean;
1780
+ attributionStatus: RushAttributionStatus;
1781
+ directionAnalysisEligible: boolean;
1782
+ parseStatus: RushParseStatus;
1783
+ ppa: (number) | null;
1784
+ success: (boolean) | null;
1785
+ };
1786
+
1787
+ export type RushingPlayClock = {
1788
+ minutes: number;
1789
+ seconds: number;
1790
+ };
1791
+
1792
+ export type RushParseStatus = 'complete' | 'partial' | 'invalid';
1793
+
1501
1794
  export type ScoreboardGame = {
1502
1795
  id: number;
1503
1796
  startDate: string;
@@ -1709,6 +2002,26 @@ export type TeamHavoc = {
1709
2002
  db: number;
1710
2003
  };
1711
2004
 
2005
+ export type TeamPassingGame = {
2006
+ gameId: number;
2007
+ season: number;
2008
+ week: number;
2009
+ seasonType: SeasonType;
2010
+ team: string;
2011
+ conference: (string) | null;
2012
+ opponent: string;
2013
+ offense: PassingProduction;
2014
+ defense: PassingProduction;
2015
+ };
2016
+
2017
+ export type TeamPassingSeason = {
2018
+ season: number;
2019
+ team: string;
2020
+ conference: (string) | null;
2021
+ offense: PassingProduction;
2022
+ defense: PassingProduction;
2023
+ };
2024
+
1712
2025
  export type TeamPPA = {
1713
2026
  team: string;
1714
2027
  plays: number;
@@ -1748,6 +2061,61 @@ export type TeamRecruitingRanking = {
1748
2061
  points: number;
1749
2062
  };
1750
2063
 
2064
+ export type TeamRushingGame = {
2065
+ gameId: number;
2066
+ season: number;
2067
+ week: number;
2068
+ seasonType: SeasonType;
2069
+ team: string;
2070
+ conference: (string) | null;
2071
+ opponent: string;
2072
+ offense: TeamRushingProduction;
2073
+ defense: TeamRushingProduction;
2074
+ };
2075
+
2076
+ export type TeamRushingProduction = {
2077
+ attempts: number;
2078
+ rushingYardsAvailable: number;
2079
+ totalRushingYards: (number) | null;
2080
+ yardsPerCarry: (number) | null;
2081
+ individualAttempts: number;
2082
+ unattributedAttempts: number;
2083
+ sacks: number;
2084
+ kneels: number;
2085
+ teamRushes: number;
2086
+ multiCarrierAttempts: number;
2087
+ directionEligibleAttempts: number;
2088
+ directionAvailableAttempts: number;
2089
+ successRate: number;
2090
+ ppa: number;
2091
+ totalPpa: number;
2092
+ lineYards: number;
2093
+ lineYardsTotal: number;
2094
+ secondLevelYards: number;
2095
+ secondLevelYardsTotal: number;
2096
+ openFieldYards: number;
2097
+ openFieldYardsTotal: number;
2098
+ stuffRate: number;
2099
+ powerSuccess: number;
2100
+ explosiveness: number;
2101
+ directions: {
2102
+ unknown: RushingDirectionProduction;
2103
+ right: RushingDirectionProduction;
2104
+ middle: RushingDirectionProduction;
2105
+ left: RushingDirectionProduction;
2106
+ };
2107
+ touchdownStatusAvailable: number;
2108
+ rushingTouchdowns: number;
2109
+ };
2110
+
2111
+ export type TeamRushingSeason = {
2112
+ season: number;
2113
+ team: string;
2114
+ conference: (string) | null;
2115
+ offense: TeamRushingProduction;
2116
+ defense: TeamRushingProduction;
2117
+ };
2118
+
1751
2119
  export type TeamRushingStats = {
1752
2120
  team: string;
1753
2121
  powerSuccess: number;
@@ -2469,6 +2837,215 @@ export type GetGameHavocStatsResponse = (Array<GameHavocStats>);
2469
2837
 
2470
2838
  export type GetGameHavocStatsError = unknown;
2471
2839
 
2840
+ export type GetRushingPlaysData = {
2841
+ query?: {
2842
+ /**
2843
+ * Rusher attribution status.
2844
+ */
2845
+ attributionStatus?: RushAttributionStatus;
2846
+ /**
2847
+ * Division classification. Defaults to `fbs`.
2848
+ */
2849
+ classification?: DivisionClassification;
2850
+ /**
2851
+ * Conference name or abbreviation on either side of the rush.
2852
+ */
2853
+ conference?: string;
2854
+ /**
2855
+ * Defending team name.
2856
+ */
2857
+ defense?: string;
2858
+ /**
2859
+ * Filters attempts by ordinary direction-analysis eligibility.
2860
+ */
2861
+ directionAnalysisEligible?: boolean;
2862
+ /**
2863
+ * Game ID.
2864
+ */
2865
+ gameId?: number;
2866
+ /**
2867
+ * Filters kneel attempts.
2868
+ */
2869
+ isKneel?: boolean;
2870
+ /**
2871
+ * Filters known rushing touchdown results.
2872
+ */
2873
+ isRushingTouchdown?: boolean;
2874
+ /**
2875
+ * Filters sack attempts.
2876
+ */
2877
+ isSack?: boolean;
2878
+ /**
2879
+ * Filters team-only rushing attempts.
2880
+ */
2881
+ isTeamRush?: boolean;
2882
+ /**
2883
+ * Rushing offense team name.
2884
+ */
2885
+ offense?: string;
2886
+ /**
2887
+ * Rushing direction.
2888
+ */
2889
+ rushDirection?: RushDirection;
2890
+ /**
2891
+ * Rusher athlete ID.
2892
+ */
2893
+ rusherId?: string;
2894
+ /**
2895
+ * Season type.
2896
+ */
2897
+ seasonType?: SeasonType;
2898
+ /**
2899
+ * Team name on either side of the rush; either team or week is required with year.
2900
+ */
2901
+ team?: string;
2902
+ /**
2903
+ * Week number. Requires year; either team or week is required with year.
2904
+ */
2905
+ week?: number;
2906
+ /**
2907
+ * Season year. Requires team or week.
2908
+ */
2909
+ year?: number;
2910
+ };
2911
+ };
2912
+
2913
+ export type GetRushingPlaysResponse = (Array<RushingPlay>);
2914
+
2915
+ export type GetRushingPlaysError = unknown;
2916
+
2917
+ export type GetPlayerRushingBySeasonData = {
2918
+ query?: {
2919
+ /**
2920
+ * Division classification. Defaults to `fbs`.
2921
+ */
2922
+ classification?: DivisionClassification;
2923
+ /**
2924
+ * Conference name or abbreviation.
2925
+ */
2926
+ conference?: string;
2927
+ /**
2928
+ * Rusher athlete ID. Required unless year is specified.
2929
+ */
2930
+ rusherId?: string;
2931
+ /**
2932
+ * Season type.
2933
+ */
2934
+ seasonType?: SeasonType;
2935
+ /**
2936
+ * Team name.
2937
+ */
2938
+ team?: string;
2939
+ /**
2940
+ * Season year. Required unless rusherId is specified.
2941
+ */
2942
+ year?: number;
2943
+ };
2944
+ };
2945
+
2946
+ export type GetPlayerRushingBySeasonResponse = (Array<PlayerRushingSeason>);
2947
+
2948
+ export type GetPlayerRushingBySeasonError = unknown;
2949
+
2950
+ export type GetPlayerRushingByGameData = {
2951
+ query?: {
2952
+ /**
2953
+ * Division classification. Defaults to `fbs`.
2954
+ */
2955
+ classification?: DivisionClassification;
2956
+ /**
2957
+ * Conference name or abbreviation.
2958
+ */
2959
+ conference?: string;
2960
+ /**
2961
+ * Rusher athlete ID. Required unless year is specified.
2962
+ */
2963
+ rusherId?: string;
2964
+ /**
2965
+ * Season type.
2966
+ */
2967
+ seasonType?: SeasonType;
2968
+ /**
2969
+ * Team name; either team or week is required with year.
2970
+ */
2971
+ team?: string;
2972
+ /**
2973
+ * Week number. Requires year; either team or week is required with year.
2974
+ */
2975
+ week?: number;
2976
+ /**
2977
+ * Season year. Requires team or week; optional when rusherId is specified alone.
2978
+ */
2979
+ year?: number;
2980
+ };
2981
+ };
2982
+
2983
+ export type GetPlayerRushingByGameResponse = (Array<PlayerRushingGame>);
2984
+
2985
+ export type GetPlayerRushingByGameError = unknown;
2986
+
2987
+ export type GetTeamRushingBySeasonData = {
2988
+ query?: {
2989
+ /**
2990
+ * Division classification. Defaults to `fbs`.
2991
+ */
2992
+ classification?: DivisionClassification;
2993
+ /**
2994
+ * Conference name or abbreviation.
2995
+ */
2996
+ conference?: string;
2997
+ /**
2998
+ * Season type.
2999
+ */
3000
+ seasonType?: SeasonType;
3001
+ /**
3002
+ * Team name. Required unless year is specified.
3003
+ */
3004
+ team?: string;
3005
+ /**
3006
+ * Season year. Required unless team is specified.
3007
+ */
3008
+ year?: number;
3009
+ };
3010
+ };
3011
+
3012
+ export type GetTeamRushingBySeasonResponse = (Array<TeamRushingSeason>);
3013
+
3014
+ export type GetTeamRushingBySeasonError = unknown;
3015
+
3016
+ export type GetTeamRushingByGameData = {
3017
+ query: {
3018
+ /**
3019
+ * Division classification. Defaults to `fbs`.
3020
+ */
3021
+ classification?: DivisionClassification;
3022
+ /**
3023
+ * Conference name or abbreviation.
3024
+ */
3025
+ conference?: string;
3026
+ /**
3027
+ * Season type.
3028
+ */
3029
+ seasonType?: SeasonType;
3030
+ /**
3031
+ * Team name. Either team or week is required.
3032
+ */
3033
+ team?: string;
3034
+ /**
3035
+ * Week number. Either team or week is required.
3036
+ */
3037
+ week?: number;
3038
+ /**
3039
+ * Season year. Required.
3040
+ */
3041
+ year: number;
3042
+ };
3043
+ };
3044
+
3045
+ export type GetTeamRushingByGameResponse = (Array<TeamRushingGame>);
3046
+
3047
+ export type GetTeamRushingByGameError = unknown;
3048
+
2472
3049
  export type GetRecruitsData = {
2473
3050
  query?: {
2474
3051
  /**
@@ -2999,6 +3576,195 @@ export type GetTransferPortalResponse = (Array<PlayerTransfer>);
2999
3576
 
3000
3577
  export type GetTransferPortalError = unknown;
3001
3578
 
3579
+ export type GetPassingPlaysData = {
3580
+ query: {
3581
+ /**
3582
+ * Division classification. Defaults to `fbs`.
3583
+ */
3584
+ classification?: DivisionClassification;
3585
+ /**
3586
+ * Conference name or abbreviation on either side of the pass.
3587
+ */
3588
+ conference?: string;
3589
+ /**
3590
+ * Defensive team name.
3591
+ */
3592
+ defense?: string;
3593
+ /**
3594
+ * Game ID.
3595
+ */
3596
+ gameId?: number;
3597
+ /**
3598
+ * Offensive team name.
3599
+ */
3600
+ offense?: string;
3601
+ /**
3602
+ * Pass outcome.
3603
+ */
3604
+ outcome?: PassOutcome;
3605
+ /**
3606
+ * Passer athlete ID.
3607
+ */
3608
+ passerId?: string;
3609
+ /**
3610
+ * Season type.
3611
+ */
3612
+ seasonType?: SeasonType;
3613
+ /**
3614
+ * Intended target athlete ID.
3615
+ */
3616
+ targetId?: string;
3617
+ /**
3618
+ * Team name on either side of the pass. Either team or week is required.
3619
+ */
3620
+ team?: string;
3621
+ /**
3622
+ * Week number. Either team or week is required.
3623
+ */
3624
+ week?: number;
3625
+ /**
3626
+ * Season year.
3627
+ */
3628
+ year: number;
3629
+ };
3630
+ };
3631
+
3632
+ export type GetPassingPlaysResponse = (Array<PassingPlay>);
3633
+
3634
+ export type GetPassingPlaysError = unknown;
3635
+
3636
+ export type GetPlayerPassingBySeasonData = {
3637
+ query?: {
3638
+ /**
3639
+ * Division classification. Defaults to `fbs`.
3640
+ */
3641
+ classification?: DivisionClassification;
3642
+ /**
3643
+ * Conference name or abbreviation.
3644
+ */
3645
+ conference?: string;
3646
+ /**
3647
+ * Passer athlete ID. Required unless year is specified.
3648
+ */
3649
+ passerId?: string;
3650
+ /**
3651
+ * Season type.
3652
+ */
3653
+ seasonType?: SeasonType;
3654
+ /**
3655
+ * Team name.
3656
+ */
3657
+ team?: string;
3658
+ /**
3659
+ * Season year. Required unless passerId is specified.
3660
+ */
3661
+ year?: number;
3662
+ };
3663
+ };
3664
+
3665
+ export type GetPlayerPassingBySeasonResponse = (Array<PlayerPassingSeason>);
3666
+
3667
+ export type GetPlayerPassingBySeasonError = unknown;
3668
+
3669
+ export type GetPlayerPassingByGameData = {
3670
+ query: {
3671
+ /**
3672
+ * Division classification. Defaults to `fbs`.
3673
+ */
3674
+ classification?: DivisionClassification;
3675
+ /**
3676
+ * Conference name or abbreviation.
3677
+ */
3678
+ conference?: string;
3679
+ /**
3680
+ * Passer athlete ID. Either passerId, team, or week is required.
3681
+ */
3682
+ passerId?: string;
3683
+ /**
3684
+ * Season type.
3685
+ */
3686
+ seasonType?: SeasonType;
3687
+ /**
3688
+ * Team name. Either passerId, team, or week is required.
3689
+ */
3690
+ team?: string;
3691
+ /**
3692
+ * Week number. Either passerId, team, or week is required.
3693
+ */
3694
+ week?: number;
3695
+ /**
3696
+ * Season year. Required.
3697
+ */
3698
+ year: number;
3699
+ };
3700
+ };
3701
+
3702
+ export type GetPlayerPassingByGameResponse = (Array<PlayerPassingGame>);
3703
+
3704
+ export type GetPlayerPassingByGameError = unknown;
3705
+
3706
+ export type GetTeamPassingBySeasonData = {
3707
+ query?: {
3708
+ /**
3709
+ * Division classification. Defaults to `fbs`.
3710
+ */
3711
+ classification?: DivisionClassification;
3712
+ /**
3713
+ * Conference name or abbreviation.
3714
+ */
3715
+ conference?: string;
3716
+ /**
3717
+ * Season type.
3718
+ */
3719
+ seasonType?: SeasonType;
3720
+ /**
3721
+ * Team name. Required unless year is specified.
3722
+ */
3723
+ team?: string;
3724
+ /**
3725
+ * Season year. Required unless team is specified.
3726
+ */
3727
+ year?: number;
3728
+ };
3729
+ };
3730
+
3731
+ export type GetTeamPassingBySeasonResponse = (Array<TeamPassingSeason>);
3732
+
3733
+ export type GetTeamPassingBySeasonError = unknown;
3734
+
3735
+ export type GetTeamPassingByGameData = {
3736
+ query: {
3737
+ /**
3738
+ * Division classification. Defaults to `fbs`.
3739
+ */
3740
+ classification?: DivisionClassification;
3741
+ /**
3742
+ * Conference name or abbreviation.
3743
+ */
3744
+ conference?: string;
3745
+ /**
3746
+ * Season type.
3747
+ */
3748
+ seasonType?: SeasonType;
3749
+ /**
3750
+ * Team name. Either team or week is required.
3751
+ */
3752
+ team?: string;
3753
+ /**
3754
+ * Week number. Either team or week is required.
3755
+ */
3756
+ week?: number;
3757
+ /**
3758
+ * Season year. Required.
3759
+ */
3760
+ year: number;
3761
+ };
3762
+ };
3763
+
3764
+ export type GetTeamPassingByGameResponse = (Array<TeamPassingGame>);
3765
+
3766
+ export type GetTeamPassingByGameError = unknown;
3767
+
3002
3768
  export type GetPredictedPointsData = {
3003
3769
  query: {
3004
3770
  /**