@oro-ai/sdk 1.0.84 → 1.0.85
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 +1 -5
- package/dist/index.d.ts +1 -5
- package/package.json +1 -1
- package/src/generated/types.gen.ts +1 -5
package/dist/index.d.mts
CHANGED
|
@@ -950,13 +950,9 @@ type ClaimWorkResponse = {
|
|
|
950
950
|
*/
|
|
951
951
|
code_download_url: string;
|
|
952
952
|
/**
|
|
953
|
-
* Per-run scoped inference credential. Null when the miner has no inference auth connected
|
|
953
|
+
* 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.
|
|
954
954
|
*/
|
|
955
955
|
inference_token?: (InferenceTokenGrant | null);
|
|
956
|
-
/**
|
|
957
|
-
* When ``inference_token`` is null because the mint call itself failed (rather than the miner having no credential), this carries the human-readable reason the validator should write into the eval run's ``failure_reason`` field. Present only when the backend classified the failure — legacy no-credential runs leave it null and the validator uses its own default. (ORO-1509)
|
|
958
|
-
*/
|
|
959
|
-
inference_mint_failure_reason?: (string | null);
|
|
960
956
|
};
|
|
961
957
|
type ClearCooldownResponse = {
|
|
962
958
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -950,13 +950,9 @@ type ClaimWorkResponse = {
|
|
|
950
950
|
*/
|
|
951
951
|
code_download_url: string;
|
|
952
952
|
/**
|
|
953
|
-
* Per-run scoped inference credential. Null when the miner has no inference auth connected
|
|
953
|
+
* 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.
|
|
954
954
|
*/
|
|
955
955
|
inference_token?: (InferenceTokenGrant | null);
|
|
956
|
-
/**
|
|
957
|
-
* When ``inference_token`` is null because the mint call itself failed (rather than the miner having no credential), this carries the human-readable reason the validator should write into the eval run's ``failure_reason`` field. Present only when the backend classified the failure — legacy no-credential runs leave it null and the validator uses its own default. (ORO-1509)
|
|
958
|
-
*/
|
|
959
|
-
inference_mint_failure_reason?: (string | null);
|
|
960
956
|
};
|
|
961
957
|
type ClearCooldownResponse = {
|
|
962
958
|
/**
|
package/package.json
CHANGED
|
@@ -991,13 +991,9 @@ export type ClaimWorkResponse = {
|
|
|
991
991
|
*/
|
|
992
992
|
code_download_url: string;
|
|
993
993
|
/**
|
|
994
|
-
* Per-run scoped inference credential. Null when the miner has no inference auth connected
|
|
994
|
+
* 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.
|
|
995
995
|
*/
|
|
996
996
|
inference_token?: (InferenceTokenGrant | null);
|
|
997
|
-
/**
|
|
998
|
-
* When ``inference_token`` is null because the mint call itself failed (rather than the miner having no credential), this carries the human-readable reason the validator should write into the eval run's ``failure_reason`` field. Present only when the backend classified the failure — legacy no-credential runs leave it null and the validator uses its own default. (ORO-1509)
|
|
999
|
-
*/
|
|
1000
|
-
inference_mint_failure_reason?: (string | null);
|
|
1001
997
|
};
|
|
1002
998
|
|
|
1003
999
|
export type ClearCooldownResponse = {
|