@oro-ai/sdk 1.0.96 → 1.0.97
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -2243,6 +2243,10 @@ type RacePublic = {
|
|
|
2243
2243
|
* Number of qualifiers in this race
|
|
2244
2244
|
*/
|
|
2245
2245
|
qualifier_count?: number;
|
|
2246
|
+
/**
|
|
2247
|
+
* Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
|
|
2248
|
+
*/
|
|
2249
|
+
scored_count?: (number | null);
|
|
2246
2250
|
/**
|
|
2247
2251
|
* 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.
|
|
2248
2252
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2243,6 +2243,10 @@ type RacePublic = {
|
|
|
2243
2243
|
* Number of qualifiers in this race
|
|
2244
2244
|
*/
|
|
2245
2245
|
qualifier_count?: number;
|
|
2246
|
+
/**
|
|
2247
|
+
* Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
|
|
2248
|
+
*/
|
|
2249
|
+
scored_count?: (number | null);
|
|
2246
2250
|
/**
|
|
2247
2251
|
* 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.
|
|
2248
2252
|
*/
|
package/package.json
CHANGED
|
@@ -2355,6 +2355,10 @@ export type RacePublic = {
|
|
|
2355
2355
|
* Number of qualifiers in this race
|
|
2356
2356
|
*/
|
|
2357
2357
|
qualifier_count?: number;
|
|
2358
|
+
/**
|
|
2359
|
+
* Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
|
|
2360
|
+
*/
|
|
2361
|
+
scored_count?: (number | null);
|
|
2358
2362
|
/**
|
|
2359
2363
|
* 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.
|
|
2360
2364
|
*/
|