cfbd 5.0.19-alpha.0 → 5.0.21-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.
- package/cfbd-5.0.21-alpha.0.tgz +0 -0
- package/dist/schemas.gen.d.ts +16 -2
- package/dist/schemas.gen.js +18 -4
- package/dist/types.gen.d.ts +9 -0
- package/package.json +1 -1
- package/src/schemas.gen.ts +18 -4
- package/src/types.gen.ts +9 -0
- package/cfbd-5.0.19-alpha.0.tgz +0 -0
|
Binary file
|
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -3776,16 +3776,26 @@ export declare const CalendarWeekSchema: {
|
|
|
3776
3776
|
readonly seasonType: {
|
|
3777
3777
|
readonly $ref: "#/components/schemas/SeasonType";
|
|
3778
3778
|
};
|
|
3779
|
+
readonly startDate: {
|
|
3780
|
+
readonly type: "string";
|
|
3781
|
+
readonly format: "date-time";
|
|
3782
|
+
};
|
|
3783
|
+
readonly endDate: {
|
|
3784
|
+
readonly type: "string";
|
|
3785
|
+
readonly format: "date-time";
|
|
3786
|
+
};
|
|
3779
3787
|
readonly firstGameStart: {
|
|
3780
3788
|
readonly type: "string";
|
|
3781
3789
|
readonly format: "date-time";
|
|
3790
|
+
readonly deprecated: true;
|
|
3782
3791
|
};
|
|
3783
3792
|
readonly lastGameStart: {
|
|
3784
3793
|
readonly type: "string";
|
|
3785
3794
|
readonly format: "date-time";
|
|
3795
|
+
readonly deprecated: true;
|
|
3786
3796
|
};
|
|
3787
3797
|
};
|
|
3788
|
-
readonly required: readonly ["season", "week", "seasonType", "firstGameStart", "lastGameStart"];
|
|
3798
|
+
readonly required: readonly ["season", "week", "seasonType", "startDate", "endDate", "firstGameStart", "lastGameStart"];
|
|
3789
3799
|
readonly type: "object";
|
|
3790
3800
|
readonly additionalProperties: false;
|
|
3791
3801
|
};
|
|
@@ -3836,6 +3846,10 @@ export declare const ScoreboardGameSchema: {
|
|
|
3836
3846
|
readonly type: "string";
|
|
3837
3847
|
readonly nullable: true;
|
|
3838
3848
|
};
|
|
3849
|
+
readonly lastPlay: {
|
|
3850
|
+
readonly type: "string";
|
|
3851
|
+
readonly nullable: true;
|
|
3852
|
+
};
|
|
3839
3853
|
readonly venue: {
|
|
3840
3854
|
readonly properties: {
|
|
3841
3855
|
readonly state: {
|
|
@@ -3978,7 +3992,7 @@ export declare const ScoreboardGameSchema: {
|
|
|
3978
3992
|
readonly type: "object";
|
|
3979
3993
|
};
|
|
3980
3994
|
};
|
|
3981
|
-
readonly required: readonly ["id", "startDate", "startTimeTBD", "tv", "neutralSite", "conferenceGame", "status", "period", "clock", "situation", "possession", "venue", "homeTeam", "awayTeam", "weather", "betting"];
|
|
3995
|
+
readonly required: readonly ["id", "startDate", "startTimeTBD", "tv", "neutralSite", "conferenceGame", "status", "period", "clock", "situation", "possession", "lastPlay", "venue", "homeTeam", "awayTeam", "weather", "betting"];
|
|
3982
3996
|
readonly type: "object";
|
|
3983
3997
|
readonly additionalProperties: false;
|
|
3984
3998
|
};
|
package/dist/schemas.gen.js
CHANGED
|
@@ -3800,16 +3800,26 @@ exports.CalendarWeekSchema = {
|
|
|
3800
3800
|
seasonType: {
|
|
3801
3801
|
'$ref': '#/components/schemas/SeasonType'
|
|
3802
3802
|
},
|
|
3803
|
-
|
|
3803
|
+
startDate: {
|
|
3804
3804
|
type: 'string',
|
|
3805
3805
|
format: 'date-time'
|
|
3806
3806
|
},
|
|
3807
|
-
|
|
3807
|
+
endDate: {
|
|
3808
3808
|
type: 'string',
|
|
3809
3809
|
format: 'date-time'
|
|
3810
|
+
},
|
|
3811
|
+
firstGameStart: {
|
|
3812
|
+
type: 'string',
|
|
3813
|
+
format: 'date-time',
|
|
3814
|
+
deprecated: true
|
|
3815
|
+
},
|
|
3816
|
+
lastGameStart: {
|
|
3817
|
+
type: 'string',
|
|
3818
|
+
format: 'date-time',
|
|
3819
|
+
deprecated: true
|
|
3810
3820
|
}
|
|
3811
3821
|
},
|
|
3812
|
-
required: ['season', 'week', 'seasonType', 'firstGameStart', 'lastGameStart'],
|
|
3822
|
+
required: ['season', 'week', 'seasonType', 'startDate', 'endDate', 'firstGameStart', 'lastGameStart'],
|
|
3813
3823
|
type: 'object',
|
|
3814
3824
|
additionalProperties: false
|
|
3815
3825
|
};
|
|
@@ -3860,6 +3870,10 @@ exports.ScoreboardGameSchema = {
|
|
|
3860
3870
|
type: 'string',
|
|
3861
3871
|
nullable: true
|
|
3862
3872
|
},
|
|
3873
|
+
lastPlay: {
|
|
3874
|
+
type: 'string',
|
|
3875
|
+
nullable: true
|
|
3876
|
+
},
|
|
3863
3877
|
venue: {
|
|
3864
3878
|
properties: {
|
|
3865
3879
|
state: {
|
|
@@ -4006,7 +4020,7 @@ exports.ScoreboardGameSchema = {
|
|
|
4006
4020
|
type: 'object'
|
|
4007
4021
|
}
|
|
4008
4022
|
},
|
|
4009
|
-
required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
|
|
4023
|
+
required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'lastPlay', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
|
|
4010
4024
|
type: 'object',
|
|
4011
4025
|
additionalProperties: false
|
|
4012
4026
|
};
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -975,7 +975,15 @@ export type CalendarWeek = {
|
|
|
975
975
|
season: number;
|
|
976
976
|
week: number;
|
|
977
977
|
seasonType: SeasonType;
|
|
978
|
+
startDate: string;
|
|
979
|
+
endDate: string;
|
|
980
|
+
/**
|
|
981
|
+
* @deprecated
|
|
982
|
+
*/
|
|
978
983
|
firstGameStart: string;
|
|
984
|
+
/**
|
|
985
|
+
* @deprecated
|
|
986
|
+
*/
|
|
979
987
|
lastGameStart: string;
|
|
980
988
|
};
|
|
981
989
|
export type GameStatus = 'scheduled' | 'in_progress' | 'completed';
|
|
@@ -991,6 +999,7 @@ export type ScoreboardGame = {
|
|
|
991
999
|
clock: (string) | null;
|
|
992
1000
|
situation: (string) | null;
|
|
993
1001
|
possession: (string) | null;
|
|
1002
|
+
lastPlay: (string) | null;
|
|
994
1003
|
venue: {
|
|
995
1004
|
state: (string) | null;
|
|
996
1005
|
city: (string) | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cfbd",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.21-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",
|
package/src/schemas.gen.ts
CHANGED
|
@@ -3860,16 +3860,26 @@ export const CalendarWeekSchema = {
|
|
|
3860
3860
|
seasonType: {
|
|
3861
3861
|
'$ref': '#/components/schemas/SeasonType'
|
|
3862
3862
|
},
|
|
3863
|
-
|
|
3863
|
+
startDate: {
|
|
3864
3864
|
type: 'string',
|
|
3865
3865
|
format: 'date-time'
|
|
3866
3866
|
},
|
|
3867
|
-
|
|
3867
|
+
endDate: {
|
|
3868
3868
|
type: 'string',
|
|
3869
3869
|
format: 'date-time'
|
|
3870
|
+
},
|
|
3871
|
+
firstGameStart: {
|
|
3872
|
+
type: 'string',
|
|
3873
|
+
format: 'date-time',
|
|
3874
|
+
deprecated: true
|
|
3875
|
+
},
|
|
3876
|
+
lastGameStart: {
|
|
3877
|
+
type: 'string',
|
|
3878
|
+
format: 'date-time',
|
|
3879
|
+
deprecated: true
|
|
3870
3880
|
}
|
|
3871
3881
|
},
|
|
3872
|
-
required: ['season', 'week', 'seasonType', 'firstGameStart', 'lastGameStart'],
|
|
3882
|
+
required: ['season', 'week', 'seasonType', 'startDate', 'endDate', 'firstGameStart', 'lastGameStart'],
|
|
3873
3883
|
type: 'object',
|
|
3874
3884
|
additionalProperties: false
|
|
3875
3885
|
} as const;
|
|
@@ -3922,6 +3932,10 @@ export const ScoreboardGameSchema = {
|
|
|
3922
3932
|
type: 'string',
|
|
3923
3933
|
nullable: true
|
|
3924
3934
|
},
|
|
3935
|
+
lastPlay: {
|
|
3936
|
+
type: 'string',
|
|
3937
|
+
nullable: true
|
|
3938
|
+
},
|
|
3925
3939
|
venue: {
|
|
3926
3940
|
properties: {
|
|
3927
3941
|
state: {
|
|
@@ -4068,7 +4082,7 @@ export const ScoreboardGameSchema = {
|
|
|
4068
4082
|
type: 'object'
|
|
4069
4083
|
}
|
|
4070
4084
|
},
|
|
4071
|
-
required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
|
|
4085
|
+
required: ['id', 'startDate', 'startTimeTBD', 'tv', 'neutralSite', 'conferenceGame', 'status', 'period', 'clock', 'situation', 'possession', 'lastPlay', 'venue', 'homeTeam', 'awayTeam', 'weather', 'betting'],
|
|
4072
4086
|
type: 'object',
|
|
4073
4087
|
additionalProperties: false
|
|
4074
4088
|
} as const;
|
package/src/types.gen.ts
CHANGED
|
@@ -1043,7 +1043,15 @@ export type CalendarWeek = {
|
|
|
1043
1043
|
season: number;
|
|
1044
1044
|
week: number;
|
|
1045
1045
|
seasonType: SeasonType;
|
|
1046
|
+
startDate: string;
|
|
1047
|
+
endDate: string;
|
|
1048
|
+
/**
|
|
1049
|
+
* @deprecated
|
|
1050
|
+
*/
|
|
1046
1051
|
firstGameStart: string;
|
|
1052
|
+
/**
|
|
1053
|
+
* @deprecated
|
|
1054
|
+
*/
|
|
1047
1055
|
lastGameStart: string;
|
|
1048
1056
|
};
|
|
1049
1057
|
|
|
@@ -1061,6 +1069,7 @@ export type ScoreboardGame = {
|
|
|
1061
1069
|
clock: (string) | null;
|
|
1062
1070
|
situation: (string) | null;
|
|
1063
1071
|
possession: (string) | null;
|
|
1072
|
+
lastPlay: (string) | null;
|
|
1064
1073
|
venue: {
|
|
1065
1074
|
state: (string) | null;
|
|
1066
1075
|
city: (string) | null;
|
package/cfbd-5.0.19-alpha.0.tgz
DELETED
|
Binary file
|