cfbd 5.0.18-alpha.0 → 5.0.20-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
@@ -3836,6 +3836,10 @@ export declare const ScoreboardGameSchema: {
3836
3836
  readonly type: "string";
3837
3837
  readonly nullable: true;
3838
3838
  };
3839
+ readonly lastPlay: {
3840
+ readonly type: "string";
3841
+ readonly nullable: true;
3842
+ };
3839
3843
  readonly venue: {
3840
3844
  readonly properties: {
3841
3845
  readonly state: {
@@ -3856,7 +3860,7 @@ export declare const ScoreboardGameSchema: {
3856
3860
  };
3857
3861
  readonly homeTeam: {
3858
3862
  readonly properties: {
3859
- readonly lineScore: {
3863
+ readonly lineScores: {
3860
3864
  readonly items: {
3861
3865
  readonly type: "integer";
3862
3866
  readonly format: "int32";
@@ -3887,12 +3891,12 @@ export declare const ScoreboardGameSchema: {
3887
3891
  readonly format: "int32";
3888
3892
  };
3889
3893
  };
3890
- readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3894
+ readonly required: readonly ["lineScores", "points", "classification", "conference", "name", "id"];
3891
3895
  readonly type: "object";
3892
3896
  };
3893
3897
  readonly awayTeam: {
3894
3898
  readonly properties: {
3895
- readonly lineScore: {
3899
+ readonly lineScores: {
3896
3900
  readonly items: {
3897
3901
  readonly type: "integer";
3898
3902
  readonly format: "int32";
@@ -3923,7 +3927,7 @@ export declare const ScoreboardGameSchema: {
3923
3927
  readonly format: "int32";
3924
3928
  };
3925
3929
  };
3926
- readonly required: readonly ["lineScore", "points", "classification", "conference", "name", "id"];
3930
+ readonly required: readonly ["lineScores", "points", "classification", "conference", "name", "id"];
3927
3931
  readonly type: "object";
3928
3932
  };
3929
3933
  readonly weather: {
@@ -3978,7 +3982,7 @@ export declare const ScoreboardGameSchema: {
3978
3982
  readonly type: "object";
3979
3983
  };
3980
3984
  };
3981
- readonly required: readonly ["id", "startDate", "startTimeTBD", "tv", "neutralSite", "conferenceGame", "status", "period", "clock", "situation", "possession", "venue", "homeTeam", "awayTeam", "weather", "betting"];
3985
+ readonly required: readonly ["id", "startDate", "startTimeTBD", "tv", "neutralSite", "conferenceGame", "status", "period", "clock", "situation", "possession", "lastPlay", "venue", "homeTeam", "awayTeam", "weather", "betting"];
3982
3986
  readonly type: "object";
3983
3987
  readonly additionalProperties: false;
3984
3988
  };
@@ -3860,6 +3860,10 @@ exports.ScoreboardGameSchema = {
3860
3860
  type: 'string',
3861
3861
  nullable: true
3862
3862
  },
3863
+ lastPlay: {
3864
+ type: 'string',
3865
+ nullable: true
3866
+ },
3863
3867
  venue: {
3864
3868
  properties: {
3865
3869
  state: {
@@ -3880,7 +3884,7 @@ exports.ScoreboardGameSchema = {
3880
3884
  },
3881
3885
  homeTeam: {
3882
3886
  properties: {
3883
- lineScore: {
3887
+ lineScores: {
3884
3888
  items: {
3885
3889
  type: 'integer',
3886
3890
  format: 'int32'
@@ -3913,12 +3917,12 @@ exports.ScoreboardGameSchema = {
3913
3917
  format: 'int32'
3914
3918
  }
3915
3919
  },
3916
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3920
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3917
3921
  type: 'object'
3918
3922
  },
3919
3923
  awayTeam: {
3920
3924
  properties: {
3921
- lineScore: {
3925
+ lineScores: {
3922
3926
  items: {
3923
3927
  type: 'integer',
3924
3928
  format: 'int32'
@@ -3951,7 +3955,7 @@ exports.ScoreboardGameSchema = {
3951
3955
  format: 'int32'
3952
3956
  }
3953
3957
  },
3954
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3958
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3955
3959
  type: 'object'
3956
3960
  },
3957
3961
  weather: {
@@ -4006,7 +4010,7 @@ exports.ScoreboardGameSchema = {
4006
4010
  type: 'object'
4007
4011
  }
4008
4012
  },
4009
- required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
4013
+ required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'lastPlay', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
4010
4014
  type: 'object',
4011
4015
  additionalProperties: false
4012
4016
  };
@@ -991,13 +991,14 @@ export type ScoreboardGame = {
991
991
  clock: (string) | null;
992
992
  situation: (string) | null;
993
993
  possession: (string) | null;
994
+ lastPlay: (string) | null;
994
995
  venue: {
995
996
  state: (string) | null;
996
997
  city: (string) | null;
997
998
  name: (string) | null;
998
999
  };
999
1000
  homeTeam: {
1000
- lineScore: Array<(number)> | null;
1001
+ lineScores: Array<(number)> | null;
1001
1002
  points: (number) | null;
1002
1003
  classification: ((DivisionClassification) | null);
1003
1004
  conference: (string) | null;
@@ -1005,7 +1006,7 @@ export type ScoreboardGame = {
1005
1006
  id: number;
1006
1007
  };
1007
1008
  awayTeam: {
1008
- lineScore: Array<(number)> | null;
1009
+ lineScores: Array<(number)> | null;
1009
1010
  points: (number) | null;
1010
1011
  classification: ((DivisionClassification) | null);
1011
1012
  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.20-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",
@@ -3922,6 +3922,10 @@ export const ScoreboardGameSchema = {
3922
3922
  type: 'string',
3923
3923
  nullable: true
3924
3924
  },
3925
+ lastPlay: {
3926
+ type: 'string',
3927
+ nullable: true
3928
+ },
3925
3929
  venue: {
3926
3930
  properties: {
3927
3931
  state: {
@@ -3942,7 +3946,7 @@ export const ScoreboardGameSchema = {
3942
3946
  },
3943
3947
  homeTeam: {
3944
3948
  properties: {
3945
- lineScore: {
3949
+ lineScores: {
3946
3950
  items: {
3947
3951
  type: 'integer',
3948
3952
  format: 'int32'
@@ -3975,12 +3979,12 @@ export const ScoreboardGameSchema = {
3975
3979
  format: 'int32'
3976
3980
  }
3977
3981
  },
3978
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
3982
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
3979
3983
  type: 'object'
3980
3984
  },
3981
3985
  awayTeam: {
3982
3986
  properties: {
3983
- lineScore: {
3987
+ lineScores: {
3984
3988
  items: {
3985
3989
  type: 'integer',
3986
3990
  format: 'int32'
@@ -4013,7 +4017,7 @@ export const ScoreboardGameSchema = {
4013
4017
  format: 'int32'
4014
4018
  }
4015
4019
  },
4016
- required: ['lineScore', 'points', 'classification', 'conference', 'name', 'id'],
4020
+ required: ['lineScores', 'points', 'classification', 'conference', 'name', 'id'],
4017
4021
  type: 'object'
4018
4022
  },
4019
4023
  weather: {
@@ -4068,7 +4072,7 @@ export const ScoreboardGameSchema = {
4068
4072
  type: 'object'
4069
4073
  }
4070
4074
  },
4071
- required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
4075
+ required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'lastPlay', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
4072
4076
  type: 'object',
4073
4077
  additionalProperties: false
4074
4078
  } as const;
package/src/types.gen.ts CHANGED
@@ -1061,13 +1061,14 @@ export type ScoreboardGame = {
1061
1061
  clock: (string) | null;
1062
1062
  situation: (string) | null;
1063
1063
  possession: (string) | null;
1064
+ lastPlay: (string) | null;
1064
1065
  venue: {
1065
1066
  state: (string) | null;
1066
1067
  city: (string) | null;
1067
1068
  name: (string) | null;
1068
1069
  };
1069
1070
  homeTeam: {
1070
- lineScore: Array<(number)> | null;
1071
+ lineScores: Array<(number)> | null;
1071
1072
  points: (number) | null;
1072
1073
  classification: ((DivisionClassification) | null);
1073
1074
  conference: (string) | null;
@@ -1075,7 +1076,7 @@ export type ScoreboardGame = {
1075
1076
  id: number;
1076
1077
  };
1077
1078
  awayTeam: {
1078
- lineScore: Array<(number)> | null;
1079
+ lineScores: Array<(number)> | null;
1079
1080
  points: (number) | null;
1080
1081
  classification: ((DivisionClassification) | null);
1081
1082
  conference: (string) | null;
Binary file