@oro-ai/sdk 1.0.73 → 1.0.74
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/dist/index.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -0
package/dist/index.d.mts
CHANGED
|
@@ -2113,6 +2113,14 @@ type RacePublic = {
|
|
|
2113
2113
|
* Number of qualifiers in this race
|
|
2114
2114
|
*/
|
|
2115
2115
|
qualifier_count?: number;
|
|
2116
|
+
/**
|
|
2117
|
+
* Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
|
|
2118
|
+
*/
|
|
2119
|
+
top50_mean?: (number | null);
|
|
2120
|
+
/**
|
|
2121
|
+
* Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
|
|
2122
|
+
*/
|
|
2123
|
+
top50_std?: (number | null);
|
|
2116
2124
|
/**
|
|
2117
2125
|
* When the race was created
|
|
2118
2126
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2113,6 +2113,14 @@ type RacePublic = {
|
|
|
2113
2113
|
* Number of qualifiers in this race
|
|
2114
2114
|
*/
|
|
2115
2115
|
qualifier_count?: number;
|
|
2116
|
+
/**
|
|
2117
|
+
* Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
|
|
2118
|
+
*/
|
|
2119
|
+
top50_mean?: (number | null);
|
|
2120
|
+
/**
|
|
2121
|
+
* Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
|
|
2122
|
+
*/
|
|
2123
|
+
top50_std?: (number | null);
|
|
2116
2124
|
/**
|
|
2117
2125
|
* When the race was created
|
|
2118
2126
|
*/
|
package/package.json
CHANGED
|
@@ -2219,6 +2219,14 @@ export type RacePublic = {
|
|
|
2219
2219
|
* Number of qualifiers in this race
|
|
2220
2220
|
*/
|
|
2221
2221
|
qualifier_count?: number;
|
|
2222
|
+
/**
|
|
2223
|
+
* Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
|
|
2224
|
+
*/
|
|
2225
|
+
top50_mean?: (number | null);
|
|
2226
|
+
/**
|
|
2227
|
+
* Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
|
|
2228
|
+
*/
|
|
2229
|
+
top50_std?: (number | null);
|
|
2222
2230
|
/**
|
|
2223
2231
|
* When the race was created
|
|
2224
2232
|
*/
|