cfbd 5.2.0-alpha.0 → 5.3.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.
Binary file
@@ -88,6 +88,10 @@ export declare const AdjustedTeamMetricsSchema: {
88
88
  };
89
89
  readonly rushing: {
90
90
  readonly properties: {
91
+ readonly highlightYards: {
92
+ readonly type: "number";
93
+ readonly format: "double";
94
+ };
91
95
  readonly openFieldYards: {
92
96
  readonly type: "number";
93
97
  readonly format: "double";
@@ -101,11 +105,15 @@ export declare const AdjustedTeamMetricsSchema: {
101
105
  readonly format: "double";
102
106
  };
103
107
  };
104
- readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
108
+ readonly required: readonly ["highlightYards", "openFieldYards", "secondLevelYards", "lineYards"];
105
109
  readonly type: "object";
106
110
  };
107
111
  readonly rushingAllowed: {
108
112
  readonly properties: {
113
+ readonly highlightYards: {
114
+ readonly type: "number";
115
+ readonly format: "double";
116
+ };
109
117
  readonly openFieldYards: {
110
118
  readonly type: "number";
111
119
  readonly format: "double";
@@ -119,7 +127,7 @@ export declare const AdjustedTeamMetricsSchema: {
119
127
  readonly format: "double";
120
128
  };
121
129
  };
122
- readonly required: readonly ["openFieldYards", "secondLevelYards", "lineYards"];
130
+ readonly required: readonly ["highlightYards", "openFieldYards", "secondLevelYards", "lineYards"];
123
131
  readonly type: "object";
124
132
  };
125
133
  readonly explosiveness: {
@@ -93,6 +93,10 @@ exports.AdjustedTeamMetricsSchema = {
93
93
  },
94
94
  rushing: {
95
95
  properties: {
96
+ highlightYards: {
97
+ type: 'number',
98
+ format: 'double'
99
+ },
96
100
  openFieldYards: {
97
101
  type: 'number',
98
102
  format: 'double'
@@ -106,11 +110,15 @@ exports.AdjustedTeamMetricsSchema = {
106
110
  format: 'double'
107
111
  }
108
112
  },
109
- required: ['openFieldYards', 'secondLevelYards', 'lineYards'],
113
+ required: ['highlightYards', 'openFieldYards', 'secondLevelYards', 'lineYards'],
110
114
  type: 'object'
111
115
  },
112
116
  rushingAllowed: {
113
117
  properties: {
118
+ highlightYards: {
119
+ type: 'number',
120
+ format: 'double'
121
+ },
114
122
  openFieldYards: {
115
123
  type: 'number',
116
124
  format: 'double'
@@ -124,7 +132,7 @@ exports.AdjustedTeamMetricsSchema = {
124
132
  format: 'double'
125
133
  }
126
134
  },
127
- required: ['openFieldYards', 'secondLevelYards', 'lineYards'],
135
+ required: ['highlightYards', 'openFieldYards', 'secondLevelYards', 'lineYards'],
128
136
  type: 'object'
129
137
  },
130
138
  explosiveness: {
@@ -24,11 +24,13 @@ export type AdjustedTeamMetrics = {
24
24
  total: number;
25
25
  };
26
26
  rushing: {
27
+ highlightYards: number;
27
28
  openFieldYards: number;
28
29
  secondLevelYards: number;
29
30
  lineYards: number;
30
31
  };
31
32
  rushingAllowed: {
33
+ highlightYards: number;
32
34
  openFieldYards: number;
33
35
  secondLevelYards: number;
34
36
  lineYards: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfbd",
3
- "version": "5.2.0-alpha.0",
3
+ "version": "5.3.0-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",
@@ -90,6 +90,10 @@ export const AdjustedTeamMetricsSchema = {
90
90
  },
91
91
  rushing: {
92
92
  properties: {
93
+ highlightYards: {
94
+ type: 'number',
95
+ format: 'double'
96
+ },
93
97
  openFieldYards: {
94
98
  type: 'number',
95
99
  format: 'double'
@@ -103,11 +107,15 @@ export const AdjustedTeamMetricsSchema = {
103
107
  format: 'double'
104
108
  }
105
109
  },
106
- required: ['openFieldYards', 'secondLevelYards', 'lineYards'],
110
+ required: ['highlightYards', 'openFieldYards', 'secondLevelYards', 'lineYards'],
107
111
  type: 'object'
108
112
  },
109
113
  rushingAllowed: {
110
114
  properties: {
115
+ highlightYards: {
116
+ type: 'number',
117
+ format: 'double'
118
+ },
111
119
  openFieldYards: {
112
120
  type: 'number',
113
121
  format: 'double'
@@ -121,7 +129,7 @@ export const AdjustedTeamMetricsSchema = {
121
129
  format: 'double'
122
130
  }
123
131
  },
124
- required: ['openFieldYards', 'secondLevelYards', 'lineYards'],
132
+ required: ['highlightYards', 'openFieldYards', 'secondLevelYards', 'lineYards'],
125
133
  type: 'object'
126
134
  },
127
135
  explosiveness: {
package/src/types.gen.ts CHANGED
@@ -26,11 +26,13 @@ export type AdjustedTeamMetrics = {
26
26
  total: number;
27
27
  };
28
28
  rushing: {
29
+ highlightYards: number;
29
30
  openFieldYards: number;
30
31
  secondLevelYards: number;
31
32
  lineYards: number;
32
33
  };
33
34
  rushingAllowed: {
35
+ highlightYards: number;
34
36
  openFieldYards: number;
35
37
  secondLevelYards: number;
36
38
  lineYards: number;
Binary file