Skip to content

Commit ad2735c

Browse files
fix(lineups): method name
1 parent e69f619 commit ad2735c

File tree

144 files changed

+169
-169
lines changed

Some content is hidden

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

144 files changed

+169
-169
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This API is in limited Beta for Patreon subscribers. It may have bugs and is sub
33

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

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

@@ -16,9 +16,9 @@ Python 3.7+
1616
### pip install
1717

1818
```sh
19-
pip install [email protected].0
19+
pip install [email protected].1
2020
```
21-
(you may need to run `pip` with root permission: `sudo pip install [email protected].0`)
21+
(you may need to run `pip` with root permission: `sudo pip install [email protected].1`)
2222

2323
Then import the package:
2424
```python
@@ -86,7 +86,7 @@ Class | Method | HTTP request | Description
8686
*LinesApi* | [**get_lines**](docs/LinesApi.md#get_lines) | **GET** /lines |
8787
*LinesApi* | [**get_providers**](docs/LinesApi.md#get_providers) | **GET** /lines/providers |
8888
*LineupsApi* | [**get_lineup_stats_by_game**](docs/LineupsApi.md#get_lineup_stats_by_game) | **GET** /lineups/game/{gameId} |
89-
*LineupsApi* | [**get_substitutions_by_game**](docs/LineupsApi.md#get_substitutions_by_game) | **GET** /lineups/team |
89+
*LineupsApi* | [**get_lineups_by_team_season**](docs/LineupsApi.md#get_lineups_by_team_season) | **GET** /lineups/team |
9090
*PlaysApi* | [**get_play_types**](docs/PlaysApi.md#get_play_types) | **GET** /plays/types |
9191
*PlaysApi* | [**get_plays**](docs/PlaysApi.md#get_plays) | **GET** /plays/game/{gameId} |
9292
*PlaysApi* | [**get_plays_by_date**](docs/PlaysApi.md#get_plays_by_date) | **GET** /plays/date |

cbbd/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
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.
99
10-
The version of the OpenAPI document: 1.18.0
10+
The version of the OpenAPI document: 1.18.1
1111
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "1.18.0"
18+
__version__ = "1.18.1"
1919

2020
# import apis into sdk package
2121
from cbbd.api.conferences_api import ConferencesApi

cbbd/api/conferences_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/draft_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/games_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/lines_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/lineups_api.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -189,14 +189,14 @@ def get_lineup_stats_by_game_with_http_info(self, game_id : Annotated[StrictInt,
189189
_request_auth=_params.get('_request_auth'))
190190

191191
@validate_arguments
192-
def get_substitutions_by_game(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> List[LineupStats]: # noqa: E501
193-
"""get_substitutions_by_game # noqa: E501
192+
def get_lineups_by_team_season(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> List[LineupStats]: # noqa: E501
193+
"""get_lineups_by_team_season # noqa: E501
194194
195195
Queries lineup statistics for a given team and season # noqa: E501
196196
This method makes a synchronous HTTP request by default. To make an
197197
asynchronous HTTP request, please pass async_req=True
198198
199-
>>> thread = api.get_substitutions_by_game(season, team, start_date_range, end_date_range, async_req=True)
199+
>>> thread = api.get_lineups_by_team_season(season, team, start_date_range, end_date_range, async_req=True)
200200
>>> result = thread.get()
201201
202202
:param season: Required season filter (required)
@@ -220,19 +220,19 @@ def get_substitutions_by_game(self, season : Annotated[StrictInt, Field(..., des
220220
"""
221221
kwargs['_return_http_data_only'] = True
222222
if '_preload_content' in kwargs:
223-
message = "Error! Please call the get_substitutions_by_game_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
223+
message = "Error! Please call the get_lineups_by_team_season_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
224224
raise ValueError(message)
225-
return self.get_substitutions_by_game_with_http_info(season, team, start_date_range, end_date_range, **kwargs) # noqa: E501
225+
return self.get_lineups_by_team_season_with_http_info(season, team, start_date_range, end_date_range, **kwargs) # noqa: E501
226226

227227
@validate_arguments
228-
def get_substitutions_by_game_with_http_info(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
229-
"""get_substitutions_by_game # noqa: E501
228+
def get_lineups_by_team_season_with_http_info(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
229+
"""get_lineups_by_team_season # noqa: E501
230230
231231
Queries lineup statistics for a given team and season # noqa: E501
232232
This method makes a synchronous HTTP request by default. To make an
233233
asynchronous HTTP request, please pass async_req=True
234234
235-
>>> thread = api.get_substitutions_by_game_with_http_info(season, team, start_date_range, end_date_range, async_req=True)
235+
>>> thread = api.get_lineups_by_team_season_with_http_info(season, team, start_date_range, end_date_range, async_req=True)
236236
>>> result = thread.get()
237237
238238
:param season: Required season filter (required)
@@ -293,7 +293,7 @@ def get_substitutions_by_game_with_http_info(self, season : Annotated[StrictInt,
293293
if _key not in _all_params:
294294
raise ApiTypeError(
295295
"Got an unexpected keyword argument '%s'"
296-
" to method get_substitutions_by_game" % _key
296+
" to method get_lineups_by_team_season" % _key
297297
)
298298
_params[_key] = _val
299299
del _params['kwargs']

cbbd/api/plays_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/rankings_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/ratings_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/recruiting_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/stats_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/teams_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/venues_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/1.18.0/python'
81+
self.user_agent = 'OpenAPI-Generator/1.18.1/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

cbbd/configuration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -376,8 +376,8 @@ def to_debug_report(self):
376376
return "Python SDK Debug Report:\n"\
377377
"OS: {env}\n"\
378378
"Python Version: {pyversion}\n"\
379-
"Version of the API: 1.18.0\n"\
380-
"SDK Package Version: 1.18.0".\
379+
"Version of the API: 1.18.1\n"\
380+
"SDK Package Version: 1.18.1".\
381381
format(env=sys.platform, pyversion=sys.version)
382382

383383
def get_host_settings(self):

cbbd/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
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.
88
9-
The version of the OpenAPI document: 1.18.0
9+
The version of the OpenAPI document: 1.18.1
1010
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212

cbbd/models/adjusted_efficiency_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/adjusted_efficiency_info_rankings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/conference_history.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/conference_history_teams_inner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/conference_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/draft_pick.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/draft_position.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/draft_team.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_box_score_players.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_box_score_players_players_inner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_box_score_team.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_box_score_team_stats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_box_score_team_stats_points.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/models/game_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
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.
77
8-
The version of the OpenAPI document: 1.18.0
8+
The version of the OpenAPI document: 1.18.1
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)