cfbd 5.3.0-alpha.0 → 5.3.3-alpha.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.3.3-alpha.0.tgz +0 -0
- package/dist/schemas.gen.d.ts +1 -0
- package/dist/schemas.gen.js +2 -1
- package/dist/types.gen.d.ts +1 -1
- package/package.json +1 -1
- package/src/schemas.gen.ts +2 -1
- package/src/types.gen.ts +1 -1
- package/cfbd-5.3.0-alpha.0.tgz +0 -0
|
Binary file
|
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -3952,6 +3952,7 @@ export declare const TeamRecordsSchema: {
|
|
|
3952
3952
|
readonly expectedWins: {
|
|
3953
3953
|
readonly type: "number";
|
|
3954
3954
|
readonly format: "double";
|
|
3955
|
+
readonly nullable: true;
|
|
3955
3956
|
};
|
|
3956
3957
|
readonly total: {
|
|
3957
3958
|
readonly $ref: "#/components/schemas/TeamRecord";
|
package/dist/schemas.gen.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -1023,7 +1023,7 @@ export type TeamRecords = {
|
|
|
1023
1023
|
classification: ((DivisionClassification) | null);
|
|
1024
1024
|
conference: string;
|
|
1025
1025
|
division: string;
|
|
1026
|
-
expectedWins: number;
|
|
1026
|
+
expectedWins: (number) | null;
|
|
1027
1027
|
total: TeamRecord;
|
|
1028
1028
|
conferenceGames: TeamRecord;
|
|
1029
1029
|
homeGames: TeamRecord;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cfbd",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.3-alpha.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/schemas.gen.ts
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -1093,7 +1093,7 @@ export type TeamRecords = {
|
|
|
1093
1093
|
classification: ((DivisionClassification) | null);
|
|
1094
1094
|
conference: string;
|
|
1095
1095
|
division: string;
|
|
1096
|
-
expectedWins: number;
|
|
1096
|
+
expectedWins: (number) | null;
|
|
1097
1097
|
total: TeamRecord;
|
|
1098
1098
|
conferenceGames: TeamRecord;
|
|
1099
1099
|
homeGames: TeamRecord;
|
package/cfbd-5.3.0-alpha.0.tgz
DELETED
|
Binary file
|