@oro-ai/sdk 1.0.97 → 1.0.99
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
|
@@ -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
|
*/
|
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
|
*/
|
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
|
*/
|