Skip to content

Commit 8dcb6fa

Browse files
feat(stats): new game havoc endpoint
1 parent 3a397e8 commit 8dcb6fa

File tree

308 files changed

+1141
-310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+1141
-310
lines changed

.openapi-generator/FILES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ cfbd/models/draft_team.py
6565
cfbd/models/drive.py
6666
cfbd/models/field_goal_ep.py
6767
cfbd/models/game.py
68+
cfbd/models/game_havoc_stats.py
69+
cfbd/models/game_havoc_stats_offense.py
6870
cfbd/models/game_line.py
6971
cfbd/models/game_media.py
7072
cfbd/models/game_player_stat_categories.py
@@ -122,6 +124,7 @@ cfbd/models/scoreboard_game_home_team.py
122124
cfbd/models/scoreboard_game_venue.py
123125
cfbd/models/scoreboard_game_weather.py
124126
cfbd/models/season_type.py
127+
cfbd/models/season_type_db.py
125128
cfbd/models/stats_by_quarter.py
126129
cfbd/models/team.py
127130
cfbd/models/team_ats.py
@@ -199,6 +202,8 @@ docs/Drive.md
199202
docs/DrivesApi.md
200203
docs/FieldGoalEP.md
201204
docs/Game.md
205+
docs/GameHavocStats.md
206+
docs/GameHavocStatsOffense.md
202207
docs/GameLine.md
203208
docs/GameMedia.md
204209
docs/GamePlayerStatCategories.md
@@ -264,6 +269,7 @@ docs/ScoreboardGameHomeTeam.md
264269
docs/ScoreboardGameVenue.md
265270
docs/ScoreboardGameWeather.md
266271
docs/SeasonType.md
272+
docs/SeasonTypeDB.md
267273
docs/StatsApi.md
268274
docs/StatsByQuarter.md
269275
docs/Team.md
@@ -349,6 +355,8 @@ test/test_drive.py
349355
test/test_drives_api.py
350356
test/test_field_goal_ep.py
351357
test/test_game.py
358+
test/test_game_havoc_stats.py
359+
test/test_game_havoc_stats_offense.py
352360
test/test_game_line.py
353361
test/test_game_media.py
354362
test/test_game_player_stat_categories.py
@@ -414,6 +422,7 @@ test/test_scoreboard_game_home_team.py
414422
test/test_scoreboard_game_venue.py
415423
test/test_scoreboard_game_weather.py
416424
test/test_season_type.py
425+
test/test_season_type_db.py
417426
test/test_stats_api.py
418427
test/test_stats_by_quarter.py
419428
test/test_team.py

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This is an API for query various college football datasets and analytics. API ke
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 5.12.1
7-
- Package version: 5.12.1
6+
- API version: 5.13.0
7+
- Package version: 5.13.0
88
- Generator version: 7.12.0
99
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
1010

@@ -127,6 +127,7 @@ Class | Method | HTTP request | Description
127127
*StatsApi* | [**get_advanced_game_stats**](docs/StatsApi.md#get_advanced_game_stats) | **GET** /stats/game/advanced |
128128
*StatsApi* | [**get_advanced_season_stats**](docs/StatsApi.md#get_advanced_season_stats) | **GET** /stats/season/advanced |
129129
*StatsApi* | [**get_categories**](docs/StatsApi.md#get_categories) | **GET** /stats/categories |
130+
*StatsApi* | [**get_game_havoc_stats**](docs/StatsApi.md#get_game_havoc_stats) | **GET** /stats/game/havoc |
130131
*StatsApi* | [**get_player_season_stats**](docs/StatsApi.md#get_player_season_stats) | **GET** /stats/player/season |
131132
*StatsApi* | [**get_team_stats**](docs/StatsApi.md#get_team_stats) | **GET** /stats/season |
132133
*TeamsApi* | [**get_fbs_teams**](docs/TeamsApi.md#get_fbs_teams) | **GET** /teams/fbs |
@@ -177,6 +178,8 @@ Class | Method | HTTP request | Description
177178
- [Drive](docs/Drive.md)
178179
- [FieldGoalEP](docs/FieldGoalEP.md)
179180
- [Game](docs/Game.md)
181+
- [GameHavocStats](docs/GameHavocStats.md)
182+
- [GameHavocStatsOffense](docs/GameHavocStatsOffense.md)
180183
- [GameLine](docs/GameLine.md)
181184
- [GameMedia](docs/GameMedia.md)
182185
- [GamePlayerStatCategories](docs/GamePlayerStatCategories.md)
@@ -234,6 +237,7 @@ Class | Method | HTTP request | Description
234237
- [ScoreboardGameVenue](docs/ScoreboardGameVenue.md)
235238
- [ScoreboardGameWeather](docs/ScoreboardGameWeather.md)
236239
- [SeasonType](docs/SeasonType.md)
240+
- [SeasonTypeDB](docs/SeasonTypeDB.md)
237241
- [StatsByQuarter](docs/StatsByQuarter.md)
238242
- [Team](docs/Team.md)
239243
- [TeamATS](docs/TeamATS.md)

cfbd/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
99
10-
The version of the OpenAPI document: 5.12.1
10+
The version of the OpenAPI document: 5.13.0
1111
Contact: admin@collegefootballdata.com
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "5.12.1"
18+
__version__ = "5.13.0"
1919

2020
# import apis into sdk package
2121
from cfbd.api.adjusted_metrics_api import AdjustedMetricsApi
@@ -85,6 +85,8 @@
8585
from cfbd.models.drive import Drive
8686
from cfbd.models.field_goal_ep import FieldGoalEP
8787
from cfbd.models.game import Game
88+
from cfbd.models.game_havoc_stats import GameHavocStats
89+
from cfbd.models.game_havoc_stats_offense import GameHavocStatsOffense
8890
from cfbd.models.game_line import GameLine
8991
from cfbd.models.game_media import GameMedia
9092
from cfbd.models.game_player_stat_categories import GamePlayerStatCategories
@@ -142,6 +144,7 @@
142144
from cfbd.models.scoreboard_game_venue import ScoreboardGameVenue
143145
from cfbd.models.scoreboard_game_weather import ScoreboardGameWeather
144146
from cfbd.models.season_type import SeasonType
147+
from cfbd.models.season_type_db import SeasonTypeDB
145148
from cfbd.models.stats_by_quarter import StatsByQuarter
146149
from cfbd.models.team import Team
147150
from cfbd.models.team_ats import TeamATS

cfbd/api/adjusted_metrics_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/betting_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/coaches_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/conferences_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/draft_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/drives_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cfbd/api/games_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This is an API for query various college football datasets and analytics. API keys can be acquired from the CollegeFootballData.com website.
77
8-
The version of the OpenAPI document: 5.12.1
8+
The version of the OpenAPI document: 5.13.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)