cfbd 5.3.2-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.
Binary file
@@ -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";
@@ -3975,7 +3975,8 @@ exports.TeamRecordsSchema = {
3975
3975
  },
3976
3976
  expectedWins: {
3977
3977
  type: 'number',
3978
- format: 'double'
3978
+ format: 'double',
3979
+ nullable: true
3979
3980
  },
3980
3981
  total: {
3981
3982
  '$ref': '#/components/schemas/TeamRecord'
@@ -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.2-alpha.0",
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",
@@ -4037,7 +4037,8 @@ export const TeamRecordsSchema = {
4037
4037
  },
4038
4038
  expectedWins: {
4039
4039
  type: 'number',
4040
- format: 'double'
4040
+ format: 'double',
4041
+ nullable: true
4041
4042
  },
4042
4043
  total: {
4043
4044
  '$ref': '#/components/schemas/TeamRecord'
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;
Binary file