cfbd 5.0.17-alpha.0 → 5.0.18-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,6 +3856,14 @@ export declare const ScoreboardGameSchema: {
3856
3856
  };
3857
3857
  readonly homeTeam: {
3858
3858
  readonly properties: {
3859
+ readonly lineScore: {
3860
+ readonly items: {
3861
+ readonly type: "integer";
3862
+ readonly format: "int32";
3863
+ };
3864
+ readonly type: "array";
3865
+ readonly nullable: true;
3866
+ };
3859
3867
  readonly points: {
3860
3868
  readonly type: "integer";
3861
3869
  readonly format: "int32";
@@ -3879,11 +3887,19 @@ export declare const ScoreboardGameSchema: {
3879
3887
  readonly format: "int32";
3880
3888
  };
3881
3889
  };
3882
- readonly required: readonly ["points", "classification", "conference", "name", "id"];
3890
+ readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3883
3891
  readonly type: "object";
3884
3892
  };
3885
3893
  readonly awayTeam: {
3886
3894
  readonly properties: {
3895
+ readonly lineScore: {
3896
+ readonly items: {
3897
+ readonly type: "integer";
3898
+ readonly format: "int32";
3899
+ };
3900
+ readonly type: "array";
3901
+ readonly nullable: true;
3902
+ };
3887
3903
  readonly points: {
3888
3904
  readonly type: "integer";
3889
3905
  readonly format: "int32";
@@ -3907,7 +3923,7 @@ export declare const ScoreboardGameSchema: {
3907
3923
  readonly format: "int32";
3908
3924
  };
3909
3925
  };
3910
- readonly required: readonly ["points", "classification", "conference", "name", "id"];
3926
+ readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3911
3927
  readonly type: "object";
3912
3928
  };
3913
3929
  readonly weather: {
@@ -3880,6 +3880,14 @@ exports.ScoreboardGameSchema = {
3880
3880
  },
3881
3881
  homeTeam: {
3882
3882
  properties: {
3883
+ lineScore: {
3884
+ items: {
3885
+ type: 'integer',
3886
+ format: 'int32'
3887
+ },
3888
+ type: 'array',
3889
+ nullable: true
3890
+ },
3883
3891
  points: {
3884
3892
  type: 'integer',
3885
3893
  format: 'int32',
@@ -3905,11 +3913,19 @@ exports.ScoreboardGameSchema = {
3905
3913
  format: 'int32'
3906
3914
  }
3907
3915
  },
3908
- required: ['points', 'classification', 'conference', 'name', 'id'],
3916
+ required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3909
3917
  type: 'object'
3910
3918
  },
3911
3919
  awayTeam: {
3912
3920
  properties: {
3921
+ lineScore: {
3922
+ items: {
3923
+ type: 'integer',
3924
+ format: 'int32'
3925
+ },
3926
+ type: 'array',
3927
+ nullable: true
3928
+ },
3913
3929
  points: {
3914
3930
  type: 'integer',
3915
3931
  format: 'int32',
@@ -3935,7 +3951,7 @@ exports.ScoreboardGameSchema = {
3935
3951
  format: 'int32'
3936
3952
  }
3937
3953
  },
3938
- required: ['points', 'classification', 'conference', 'name', 'id'],
3954
+ required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3939
3955
  type: 'object'
3940
3956
  },
3941
3957
  weather: {
@@ -997,6 +997,7 @@ export type ScoreboardGame = {
997
997
  name: (string) | null;
998
998
  };
999
999
  homeTeam: {
1000
+ lineScore: Array<(number)> | null;
1000
1001
  points: (number) | null;
1001
1002
  classification: ((DivisionClassification) | null);
1002
1003
  conference: (string) | null;
@@ -1004,6 +1005,7 @@ export type ScoreboardGame = {
1004
1005
  id: number;
1005
1006
  };
1006
1007
  awayTeam: {
1008
+ lineScore: Array<(number)> | null;
1007
1009
  points: (number) | null;
1008
1010
  classification: ((DivisionClassification) | null);
1009
1011
  conference: (string) | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfbd",
3
- "version": "5.0.17-alpha.0",
3
+ "version": "5.0.18-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,6 +3942,14 @@ export const ScoreboardGameSchema = {
3942
3942
  },
3943
3943
  homeTeam: {
3944
3944
  properties: {
3945
+ lineScore: {
3946
+ items: {
3947
+ type: 'integer',
3948
+ format: 'int32'
3949
+ },
3950
+ type: 'array',
3951
+ nullable: true
3952
+ },
3945
3953
  points: {
3946
3954
  type: 'integer',
3947
3955
  format: 'int32',
@@ -3967,11 +3975,19 @@ export const ScoreboardGameSchema = {
3967
3975
  format: 'int32'
3968
3976
  }
3969
3977
  },
3970
- required: ['points', 'classification', 'conference', 'name', 'id'],
3978
+ required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3971
3979
  type: 'object'
3972
3980
  },
3973
3981
  awayTeam: {
3974
3982
  properties: {
3983
+ lineScore: {
3984
+ items: {
3985
+ type: 'integer',
3986
+ format: 'int32'
3987
+ },
3988
+ type: 'array',
3989
+ nullable: true
3990
+ },
3975
3991
  points: {
3976
3992
  type: 'integer',
3977
3993
  format: 'int32',
@@ -3997,7 +4013,7 @@ export const ScoreboardGameSchema = {
3997
4013
  format: 'int32'
3998
4014
  }
3999
4015
  },
4000
- required: ['points', 'classification', 'conference', 'name', 'id'],
4016
+ required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
4001
4017
  type: 'object'
4002
4018
  },
4003
4019
  weather: {
package/src/types.gen.ts CHANGED
@@ -1067,6 +1067,7 @@ export type ScoreboardGame = {
1067
1067
  name: (string) | null;
1068
1068
  };
1069
1069
  homeTeam: {
1070
+ lineScore: Array<(number)> | null;
1070
1071
  points: (number) | null;
1071
1072
  classification: ((DivisionClassification) | null);
1072
1073
  conference: (string) | null;
@@ -1074,6 +1075,7 @@ export type ScoreboardGame = {
1074
1075
  id: number;
1075
1076
  };
1076
1077
  awayTeam: {
1078
+ lineScore: Array<(number)> | null;
1077
1079
  points: (number) | null;
1078
1080
  classification: ((DivisionClassification) | null);
1079
1081
  conference: (string) | null;
Binary file