cfbd 5.0.19-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: {
@@ -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: {
@@ -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,6 +991,7 @@ 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfbd",
3
- "version": "5.0.19-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: {
@@ -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,6 +1061,7 @@ 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;
Binary file