cfbd 5.0.18-alpha.0 → 5.0.19-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
@@ -3856,7 +3856,7 @@ export declare const ScoreboardGameSchema: {
3856
3856
  };
3857
3857
  readonly homeTeam: {
3858
3858
  readonly properties: {
3859
- readonly lineScore: {
3859
+ readonly lineScores: {
3860
3860
  readonly items: {
3861
3861
  readonly type: "integer";
3862
3862
  readonly format: "int32";
@@ -3887,12 +3887,12 @@ export declare const ScoreboardGameSchema: {
3887
3887
  readonly format: "int32";
3888
3888
  };
3889
3889
  };
3890
- readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3890
+ readonly required: readonly ["lineScores", "points", "classification", "conference", "name", "id"];
3891
3891
  readonly type: "object";
3892
3892
  };
3893
3893
  readonly awayTeam: {
3894
3894
  readonly properties: {
3895
- readonly lineScore: {
3895
+ readonly lineScores: {
3896
3896
  readonly items: {
3897
3897
  readonly type: "integer";
3898
3898
  readonly format: "int32";
@@ -3923,7 +3923,7 @@ export declare const ScoreboardGameSchema: {
3923
3923
  readonly format: "int32";
3924
3924
  };
3925
3925
  };
3926
- readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3926
+ readonly required: readonly ["lineScores", "points", "classification", "conference", "name", "id"];
3927
3927
  readonly type: "object";
3928
3928
  };
3929
3929
  readonly weather: {
@@ -3880,7 +3880,7 @@ exports.ScoreboardGameSchema = {
3880
3880
  },
3881
3881
  homeTeam: {
3882
3882
  properties: {
3883
- lineScore: {
3883
+ lineScores: {
3884
3884
  items: {
3885
3885
  type: 'integer',
3886
3886
  format: 'int32'
@@ -3913,12 +3913,12 @@ exports.ScoreboardGameSchema = {
3913
3913
  format: 'int32'
3914
3914
  }
3915
3915
  },
3916
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3916
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3917
3917
  type: 'object'
3918
3918
  },
3919
3919
  awayTeam: {
3920
3920
  properties: {
3921
- lineScore: {
3921
+ lineScores: {
3922
3922
  items: {
3923
3923
  type: 'integer',
3924
3924
  format: 'int32'
@@ -3951,7 +3951,7 @@ exports.ScoreboardGameSchema = {
3951
3951
  format: 'int32'
3952
3952
  }
3953
3953
  },
3954
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3954
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3955
3955
  type: 'object'
3956
3956
  },
3957
3957
  weather: {
@@ -997,7 +997,7 @@ export type ScoreboardGame = {
997
997
  name: (string) | null;
998
998
  };
999
999
  homeTeam: {
1000
- lineScore: Array<(number)> | null;
1000
+ lineScores: Array<(number)> | null;
1001
1001
  points: (number) | null;
1002
1002
  classification: ((DivisionClassification) | null);
1003
1003
  conference: (string) | null;
@@ -1005,7 +1005,7 @@ export type ScoreboardGame = {
1005
1005
  id: number;
1006
1006
  };
1007
1007
  awayTeam: {
1008
- lineScore: Array<(number)> | null;
1008
+ lineScores: Array<(number)> | null;
1009
1009
  points: (number) | null;
1010
1010
  classification: ((DivisionClassification) | null);
1011
1011
  conference: (string) | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfbd",
3
- "version": "5.0.18-alpha.0",
3
+ "version": "5.0.19-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",
@@ -3942,7 +3942,7 @@ export const ScoreboardGameSchema = {
3942
3942
  },
3943
3943
  homeTeam: {
3944
3944
  properties: {
3945
- lineScore: {
3945
+ lineScores: {
3946
3946
  items: {
3947
3947
  type: 'integer',
3948
3948
  format: 'int32'
@@ -3975,12 +3975,12 @@ export const ScoreboardGameSchema = {
3975
3975
  format: 'int32'
3976
3976
  }
3977
3977
  },
3978
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3978
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3979
3979
  type: 'object'
3980
3980
  },
3981
3981
  awayTeam: {
3982
3982
  properties: {
3983
- lineScore: {
3983
+ lineScores: {
3984
3984
  items: {
3985
3985
  type: 'integer',
3986
3986
  format: 'int32'
@@ -4013,7 +4013,7 @@ export const ScoreboardGameSchema = {
4013
4013
  format: 'int32'
4014
4014
  }
4015
4015
  },
4016
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
4016
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
4017
4017
  type: 'object'
4018
4018
  },
4019
4019
  weather: {
package/src/types.gen.ts CHANGED
@@ -1067,7 +1067,7 @@ export type ScoreboardGame = {
1067
1067
  name: (string) | null;
1068
1068
  };
1069
1069
  homeTeam: {
1070
- lineScore: Array<(number)> | null;
1070
+ lineScores: Array<(number)> | null;
1071
1071
  points: (number) | null;
1072
1072
  classification: ((DivisionClassification) | null);
1073
1073
  conference: (string) | null;
@@ -1075,7 +1075,7 @@ export type ScoreboardGame = {
1075
1075
  id: number;
1076
1076
  };
1077
1077
  awayTeam: {
1078
- lineScore: Array<(number)> | null;
1078
+ lineScores: Array<(number)> | null;
1079
1079
  points: (number) | null;
1080
1080
  classification: ((DivisionClassification) | null);
1081
1081
  conference: (string) | null;
Binary file