cfbd 5.16.0 → 5.17.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.17.0.tgz +0 -0
- package/dist/types.gen.d.ts +8 -0
- package/package.json +1 -1
- package/src/types.gen.ts +9 -0
- package/cfbd-5.16.0.tgz +0 -0
package/cfbd-5.17.0.tgz
ADDED
|
Binary file
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -815,6 +815,14 @@ export type PlayerSearchResult = {
|
|
|
815
815
|
hometown: string;
|
|
816
816
|
teamColor: string;
|
|
817
817
|
teamColorSecondary: string;
|
|
818
|
+
activeStartYear: (number) | null;
|
|
819
|
+
activeEndYear: (number) | null;
|
|
820
|
+
teamStints: Array<PlayerSearchTeamStint>;
|
|
821
|
+
};
|
|
822
|
+
export type PlayerSearchTeamStint = {
|
|
823
|
+
team: string;
|
|
824
|
+
startYear: (number) | null;
|
|
825
|
+
endYear: (number) | null;
|
|
818
826
|
};
|
|
819
827
|
export type PlayerSeasonOverview = {
|
|
820
828
|
season: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cfbd",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.17.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
|
@@ -865,6 +865,15 @@ export type PlayerSearchResult = {
|
|
|
865
865
|
hometown: string;
|
|
866
866
|
teamColor: string;
|
|
867
867
|
teamColorSecondary: string;
|
|
868
|
+
activeStartYear: (number) | null;
|
|
869
|
+
activeEndYear: (number) | null;
|
|
870
|
+
teamStints: Array<PlayerSearchTeamStint>;
|
|
871
|
+
};
|
|
872
|
+
|
|
873
|
+
export type PlayerSearchTeamStint = {
|
|
874
|
+
team: string;
|
|
875
|
+
startYear: (number) | null;
|
|
876
|
+
endYear: (number) | null;
|
|
868
877
|
};
|
|
869
878
|
|
|
870
879
|
export type PlayerSeasonOverview = {
|
package/cfbd-5.16.0.tgz
DELETED
|
Binary file
|