cfbd 5.1.3-alpha.0 → 5.2.0-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.2.0-alpha.0.tgz +0 -0
- package/dist/schemas.gen.d.ts +202 -137
- package/dist/schemas.gen.js +204 -139
- package/dist/services.gen.d.ts +17 -5
- package/dist/services.gen.js +34 -10
- package/dist/types.gen.d.ts +137 -56
- package/package.json +1 -1
- package/src/schemas.gen.ts +205 -138
- package/src/services.gen.ts +33 -9
- package/src/types.gen.ts +152 -60
- package/cfbd-5.1.3-alpha.0.tgz +0 -0
|
Binary file
|
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1,3 +1,205 @@
|
|
|
1
|
+
export declare const AdjustedTeamMetricsSchema: {
|
|
2
|
+
readonly properties: {
|
|
3
|
+
readonly year: {
|
|
4
|
+
readonly type: "integer";
|
|
5
|
+
readonly format: "int32";
|
|
6
|
+
};
|
|
7
|
+
readonly teamId: {
|
|
8
|
+
readonly type: "integer";
|
|
9
|
+
readonly format: "int32";
|
|
10
|
+
};
|
|
11
|
+
readonly team: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
};
|
|
14
|
+
readonly conference: {
|
|
15
|
+
readonly type: "string";
|
|
16
|
+
};
|
|
17
|
+
readonly epa: {
|
|
18
|
+
readonly properties: {
|
|
19
|
+
readonly rushing: {
|
|
20
|
+
readonly type: "number";
|
|
21
|
+
readonly format: "double";
|
|
22
|
+
};
|
|
23
|
+
readonly passing: {
|
|
24
|
+
readonly type: "number";
|
|
25
|
+
readonly format: "double";
|
|
26
|
+
};
|
|
27
|
+
readonly total: {
|
|
28
|
+
readonly type: "number";
|
|
29
|
+
readonly format: "double";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
readonly required: readonly ["rushing", "passing", "total"];
|
|
33
|
+
readonly type: "object";
|
|
34
|
+
};
|
|
35
|
+
readonly epaAllowed: {
|
|
36
|
+
readonly properties: {
|
|
37
|
+
readonly rushing: {
|
|
38
|
+
readonly type: "number";
|
|
39
|
+
readonly format: "double";
|
|
40
|
+
};
|
|
41
|
+
readonly passing: {
|
|
42
|
+
readonly type: "number";
|
|
43
|
+
readonly format: "double";
|
|
44
|
+
};
|
|
45
|
+
readonly total: {
|
|
46
|
+
readonly type: "number";
|
|
47
|
+
readonly format: "double";
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
readonly required: readonly ["rushing", "passing", "total"];
|
|
51
|
+
readonly type: "object";
|
|
52
|
+
};
|
|
53
|
+
readonly successRate: {
|
|
54
|
+
readonly properties: {
|
|
55
|
+
readonly passingDowns: {
|
|
56
|
+
readonly type: "number";
|
|
57
|
+
readonly format: "double";
|
|
58
|
+
};
|
|
59
|
+
readonly standardDowns: {
|
|
60
|
+
readonly type: "number";
|
|
61
|
+
readonly format: "double";
|
|
62
|
+
};
|
|
63
|
+
readonly total: {
|
|
64
|
+
readonly type: "number";
|
|
65
|
+
readonly format: "double";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
readonly required: readonly ["passingDowns", "standardDowns", "total"];
|
|
69
|
+
readonly type: "object";
|
|
70
|
+
};
|
|
71
|
+
readonly successRateAllowed: {
|
|
72
|
+
readonly properties: {
|
|
73
|
+
readonly passingDowns: {
|
|
74
|
+
readonly type: "number";
|
|
75
|
+
readonly format: "double";
|
|
76
|
+
};
|
|
77
|
+
readonly standardDowns: {
|
|
78
|
+
readonly type: "number";
|
|
79
|
+
readonly format: "double";
|
|
80
|
+
};
|
|
81
|
+
readonly total: {
|
|
82
|
+
readonly type: "number";
|
|
83
|
+
readonly format: "double";
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
readonly required: readonly ["passingDowns", "standardDowns", "total"];
|
|
87
|
+
readonly type: "object";
|
|
88
|
+
};
|
|
89
|
+
readonly rushing: {
|
|
90
|
+
readonly properties: {
|
|
91
|
+
readonly openFieldYards: {
|
|
92
|
+
readonly type: "number";
|
|
93
|
+
readonly format: "double";
|
|
94
|
+
};
|
|
95
|
+
readonly secondLevelYards: {
|
|
96
|
+
readonly type: "number";
|
|
97
|
+
readonly format: "double";
|
|
98
|
+
};
|
|
99
|
+
readonly lineYards: {
|
|
100
|
+
readonly type: "number";
|
|
101
|
+
readonly format: "double";
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
|
|
105
|
+
readonly type: "object";
|
|
106
|
+
};
|
|
107
|
+
readonly rushingAllowed: {
|
|
108
|
+
readonly properties: {
|
|
109
|
+
readonly openFieldYards: {
|
|
110
|
+
readonly type: "number";
|
|
111
|
+
readonly format: "double";
|
|
112
|
+
};
|
|
113
|
+
readonly secondLevelYards: {
|
|
114
|
+
readonly type: "number";
|
|
115
|
+
readonly format: "double";
|
|
116
|
+
};
|
|
117
|
+
readonly lineYards: {
|
|
118
|
+
readonly type: "number";
|
|
119
|
+
readonly format: "double";
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
|
|
123
|
+
readonly type: "object";
|
|
124
|
+
};
|
|
125
|
+
readonly explosiveness: {
|
|
126
|
+
readonly type: "number";
|
|
127
|
+
readonly format: "double";
|
|
128
|
+
};
|
|
129
|
+
readonly explosivenessAllowed: {
|
|
130
|
+
readonly type: "number";
|
|
131
|
+
readonly format: "double";
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
readonly required: readonly ["year", "teamId", "team", "conference", "epa", "epaAllowed", "successRate", "successRateAllowed", "rushing", "rushingAllowed", "explosiveness", "explosivenessAllowed"];
|
|
135
|
+
readonly type: "object";
|
|
136
|
+
readonly additionalProperties: false;
|
|
137
|
+
};
|
|
138
|
+
export declare const PlayerWeightedEPASchema: {
|
|
139
|
+
readonly properties: {
|
|
140
|
+
readonly year: {
|
|
141
|
+
readonly type: "integer";
|
|
142
|
+
readonly format: "int32";
|
|
143
|
+
};
|
|
144
|
+
readonly athleteId: {
|
|
145
|
+
readonly type: "string";
|
|
146
|
+
};
|
|
147
|
+
readonly athleteName: {
|
|
148
|
+
readonly type: "string";
|
|
149
|
+
};
|
|
150
|
+
readonly position: {
|
|
151
|
+
readonly type: "string";
|
|
152
|
+
};
|
|
153
|
+
readonly team: {
|
|
154
|
+
readonly type: "string";
|
|
155
|
+
};
|
|
156
|
+
readonly conference: {
|
|
157
|
+
readonly type: "string";
|
|
158
|
+
};
|
|
159
|
+
readonly wepa: {
|
|
160
|
+
readonly type: "number";
|
|
161
|
+
readonly format: "double";
|
|
162
|
+
};
|
|
163
|
+
readonly plays: {
|
|
164
|
+
readonly type: "integer";
|
|
165
|
+
readonly format: "int32";
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
readonly required: readonly ["year", "athleteId", "athleteName", "position", "team", "conference", "wepa", "plays"];
|
|
169
|
+
readonly type: "object";
|
|
170
|
+
readonly additionalProperties: false;
|
|
171
|
+
};
|
|
172
|
+
export declare const KickerPAARSchema: {
|
|
173
|
+
readonly properties: {
|
|
174
|
+
readonly year: {
|
|
175
|
+
readonly type: "integer";
|
|
176
|
+
readonly format: "int32";
|
|
177
|
+
};
|
|
178
|
+
readonly athleteId: {
|
|
179
|
+
readonly type: "string";
|
|
180
|
+
};
|
|
181
|
+
readonly athleteName: {
|
|
182
|
+
readonly type: "string";
|
|
183
|
+
};
|
|
184
|
+
readonly team: {
|
|
185
|
+
readonly type: "string";
|
|
186
|
+
};
|
|
187
|
+
readonly conference: {
|
|
188
|
+
readonly type: "string";
|
|
189
|
+
};
|
|
190
|
+
readonly paar: {
|
|
191
|
+
readonly type: "number";
|
|
192
|
+
readonly format: "double";
|
|
193
|
+
};
|
|
194
|
+
readonly attempts: {
|
|
195
|
+
readonly type: "integer";
|
|
196
|
+
readonly format: "int32";
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
readonly required: readonly ["year", "athleteId", "athleteName", "team", "conference", "paar", "attempts"];
|
|
200
|
+
readonly type: "object";
|
|
201
|
+
readonly additionalProperties: false;
|
|
202
|
+
};
|
|
1
203
|
export declare const VenueSchema: {
|
|
2
204
|
readonly properties: {
|
|
3
205
|
readonly id: {
|
|
@@ -1142,143 +1344,6 @@ export declare const AdvancedGameStatSchema: {
|
|
|
1142
1344
|
readonly type: "object";
|
|
1143
1345
|
readonly additionalProperties: false;
|
|
1144
1346
|
};
|
|
1145
|
-
export declare const AdjustedMetricsSchema: {
|
|
1146
|
-
readonly properties: {
|
|
1147
|
-
readonly year: {
|
|
1148
|
-
readonly type: "integer";
|
|
1149
|
-
readonly format: "int32";
|
|
1150
|
-
};
|
|
1151
|
-
readonly teamId: {
|
|
1152
|
-
readonly type: "integer";
|
|
1153
|
-
readonly format: "int32";
|
|
1154
|
-
};
|
|
1155
|
-
readonly team: {
|
|
1156
|
-
readonly type: "string";
|
|
1157
|
-
};
|
|
1158
|
-
readonly conference: {
|
|
1159
|
-
readonly type: "string";
|
|
1160
|
-
};
|
|
1161
|
-
readonly epa: {
|
|
1162
|
-
readonly properties: {
|
|
1163
|
-
readonly rushing: {
|
|
1164
|
-
readonly type: "number";
|
|
1165
|
-
readonly format: "double";
|
|
1166
|
-
};
|
|
1167
|
-
readonly passing: {
|
|
1168
|
-
readonly type: "number";
|
|
1169
|
-
readonly format: "double";
|
|
1170
|
-
};
|
|
1171
|
-
readonly total: {
|
|
1172
|
-
readonly type: "number";
|
|
1173
|
-
readonly format: "double";
|
|
1174
|
-
};
|
|
1175
|
-
};
|
|
1176
|
-
readonly required: readonly ["rushing", "passing", "total"];
|
|
1177
|
-
readonly type: "object";
|
|
1178
|
-
};
|
|
1179
|
-
readonly epaAllowed: {
|
|
1180
|
-
readonly properties: {
|
|
1181
|
-
readonly rushing: {
|
|
1182
|
-
readonly type: "number";
|
|
1183
|
-
readonly format: "double";
|
|
1184
|
-
};
|
|
1185
|
-
readonly passing: {
|
|
1186
|
-
readonly type: "number";
|
|
1187
|
-
readonly format: "double";
|
|
1188
|
-
};
|
|
1189
|
-
readonly total: {
|
|
1190
|
-
readonly type: "number";
|
|
1191
|
-
readonly format: "double";
|
|
1192
|
-
};
|
|
1193
|
-
};
|
|
1194
|
-
readonly required: readonly ["rushing", "passing", "total"];
|
|
1195
|
-
readonly type: "object";
|
|
1196
|
-
};
|
|
1197
|
-
readonly successRate: {
|
|
1198
|
-
readonly properties: {
|
|
1199
|
-
readonly passingDowns: {
|
|
1200
|
-
readonly type: "number";
|
|
1201
|
-
readonly format: "double";
|
|
1202
|
-
};
|
|
1203
|
-
readonly standardDowns: {
|
|
1204
|
-
readonly type: "number";
|
|
1205
|
-
readonly format: "double";
|
|
1206
|
-
};
|
|
1207
|
-
readonly total: {
|
|
1208
|
-
readonly type: "number";
|
|
1209
|
-
readonly format: "double";
|
|
1210
|
-
};
|
|
1211
|
-
};
|
|
1212
|
-
readonly required: readonly ["passingDowns", "standardDowns", "total"];
|
|
1213
|
-
readonly type: "object";
|
|
1214
|
-
};
|
|
1215
|
-
readonly successRateAllowed: {
|
|
1216
|
-
readonly properties: {
|
|
1217
|
-
readonly passingDowns: {
|
|
1218
|
-
readonly type: "number";
|
|
1219
|
-
readonly format: "double";
|
|
1220
|
-
};
|
|
1221
|
-
readonly standardDowns: {
|
|
1222
|
-
readonly type: "number";
|
|
1223
|
-
readonly format: "double";
|
|
1224
|
-
};
|
|
1225
|
-
readonly total: {
|
|
1226
|
-
readonly type: "number";
|
|
1227
|
-
readonly format: "double";
|
|
1228
|
-
};
|
|
1229
|
-
};
|
|
1230
|
-
readonly required: readonly ["passingDowns", "standardDowns", "total"];
|
|
1231
|
-
readonly type: "object";
|
|
1232
|
-
};
|
|
1233
|
-
readonly rushing: {
|
|
1234
|
-
readonly properties: {
|
|
1235
|
-
readonly openFieldYards: {
|
|
1236
|
-
readonly type: "number";
|
|
1237
|
-
readonly format: "double";
|
|
1238
|
-
};
|
|
1239
|
-
readonly secondLevelYards: {
|
|
1240
|
-
readonly type: "number";
|
|
1241
|
-
readonly format: "double";
|
|
1242
|
-
};
|
|
1243
|
-
readonly lineYards: {
|
|
1244
|
-
readonly type: "number";
|
|
1245
|
-
readonly format: "double";
|
|
1246
|
-
};
|
|
1247
|
-
};
|
|
1248
|
-
readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
|
|
1249
|
-
readonly type: "object";
|
|
1250
|
-
};
|
|
1251
|
-
readonly rushingAllowed: {
|
|
1252
|
-
readonly properties: {
|
|
1253
|
-
readonly openFieldYards: {
|
|
1254
|
-
readonly type: "number";
|
|
1255
|
-
readonly format: "double";
|
|
1256
|
-
};
|
|
1257
|
-
readonly secondLevelYards: {
|
|
1258
|
-
readonly type: "number";
|
|
1259
|
-
readonly format: "double";
|
|
1260
|
-
};
|
|
1261
|
-
readonly lineYards: {
|
|
1262
|
-
readonly type: "number";
|
|
1263
|
-
readonly format: "double";
|
|
1264
|
-
};
|
|
1265
|
-
};
|
|
1266
|
-
readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
|
|
1267
|
-
readonly type: "object";
|
|
1268
|
-
};
|
|
1269
|
-
readonly explosiveness: {
|
|
1270
|
-
readonly type: "number";
|
|
1271
|
-
readonly format: "double";
|
|
1272
|
-
};
|
|
1273
|
-
readonly explosivenessAllowed: {
|
|
1274
|
-
readonly type: "number";
|
|
1275
|
-
readonly format: "double";
|
|
1276
|
-
};
|
|
1277
|
-
};
|
|
1278
|
-
readonly required: readonly ["year", "teamId", "team", "conference", "epa", "epaAllowed", "successRate", "successRateAllowed", "rushing", "rushingAllowed", "explosiveness", "explosivenessAllowed"];
|
|
1279
|
-
readonly type: "object";
|
|
1280
|
-
readonly additionalProperties: false;
|
|
1281
|
-
};
|
|
1282
1347
|
export declare const RecruitClassificationSchema: {
|
|
1283
1348
|
readonly enum: readonly ["JUCO", "PrepSchool", "HighSchool"];
|
|
1284
1349
|
readonly type: "string";
|