@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -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
  */