@oro-ai/sdk 1.0.96 → 1.0.98
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +12 -0
package/dist/index.d.mts
CHANGED
|
@@ -957,6 +957,14 @@ type ClaimWorkResponse = {
|
|
|
957
957
|
* Presigned URL to download agent code
|
|
958
958
|
*/
|
|
959
959
|
code_download_url: string;
|
|
960
|
+
/**
|
|
961
|
+
* ExecutionContract this work item is frozen to (ORO-1928). Stamped at work-item creation, immutable after — contract rotations/retirements after creation do NOT change what pack this claim is bound to. Null for legacy pre-1928 work items that fall back to the static-suite path.
|
|
962
|
+
*/
|
|
963
|
+
execution_contract_id?: (string | null);
|
|
964
|
+
/**
|
|
965
|
+
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
966
|
+
*/
|
|
967
|
+
env_pack_sha256?: (string | null);
|
|
960
968
|
/**
|
|
961
969
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected. ORO-1509: when the mint call itself fails with a transient upstream error (5xx / 429 / network), the backend marks the eval run terminal server-side with a distinct failure_reason before returning; the validator's later completion call will get 409 (already complete), which existing clients already handle.
|
|
962
970
|
*/
|
|
@@ -2243,6 +2251,10 @@ type RacePublic = {
|
|
|
2243
2251
|
* Number of qualifiers in this race
|
|
2244
2252
|
*/
|
|
2245
2253
|
qualifier_count?: number;
|
|
2254
|
+
/**
|
|
2255
|
+
* 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.
|
|
2256
|
+
*/
|
|
2257
|
+
scored_count?: (number | null);
|
|
2246
2258
|
/**
|
|
2247
2259
|
* 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
2260
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -957,6 +957,14 @@ type ClaimWorkResponse = {
|
|
|
957
957
|
* Presigned URL to download agent code
|
|
958
958
|
*/
|
|
959
959
|
code_download_url: string;
|
|
960
|
+
/**
|
|
961
|
+
* ExecutionContract this work item is frozen to (ORO-1928). Stamped at work-item creation, immutable after — contract rotations/retirements after creation do NOT change what pack this claim is bound to. Null for legacy pre-1928 work items that fall back to the static-suite path.
|
|
962
|
+
*/
|
|
963
|
+
execution_contract_id?: (string | null);
|
|
964
|
+
/**
|
|
965
|
+
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
966
|
+
*/
|
|
967
|
+
env_pack_sha256?: (string | null);
|
|
960
968
|
/**
|
|
961
969
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected. ORO-1509: when the mint call itself fails with a transient upstream error (5xx / 429 / network), the backend marks the eval run terminal server-side with a distinct failure_reason before returning; the validator's later completion call will get 409 (already complete), which existing clients already handle.
|
|
962
970
|
*/
|
|
@@ -2243,6 +2251,10 @@ type RacePublic = {
|
|
|
2243
2251
|
* Number of qualifiers in this race
|
|
2244
2252
|
*/
|
|
2245
2253
|
qualifier_count?: number;
|
|
2254
|
+
/**
|
|
2255
|
+
* 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.
|
|
2256
|
+
*/
|
|
2257
|
+
scored_count?: (number | null);
|
|
2246
2258
|
/**
|
|
2247
2259
|
* 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
2260
|
*/
|
package/package.json
CHANGED
|
@@ -998,6 +998,14 @@ export type ClaimWorkResponse = {
|
|
|
998
998
|
* Presigned URL to download agent code
|
|
999
999
|
*/
|
|
1000
1000
|
code_download_url: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* ExecutionContract this work item is frozen to (ORO-1928). Stamped at work-item creation, immutable after — contract rotations/retirements after creation do NOT change what pack this claim is bound to. Null for legacy pre-1928 work items that fall back to the static-suite path.
|
|
1003
|
+
*/
|
|
1004
|
+
execution_contract_id?: (string | null);
|
|
1005
|
+
/**
|
|
1006
|
+
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
1007
|
+
*/
|
|
1008
|
+
env_pack_sha256?: (string | null);
|
|
1001
1009
|
/**
|
|
1002
1010
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected. ORO-1509: when the mint call itself fails with a transient upstream error (5xx / 429 / network), the backend marks the eval run terminal server-side with a distinct failure_reason before returning; the validator's later completion call will get 409 (already complete), which existing clients already handle.
|
|
1003
1011
|
*/
|
|
@@ -2355,6 +2363,10 @@ export type RacePublic = {
|
|
|
2355
2363
|
* Number of qualifiers in this race
|
|
2356
2364
|
*/
|
|
2357
2365
|
qualifier_count?: number;
|
|
2366
|
+
/**
|
|
2367
|
+
* 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.
|
|
2368
|
+
*/
|
|
2369
|
+
scored_count?: (number | null);
|
|
2358
2370
|
/**
|
|
2359
2371
|
* 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
2372
|
*/
|