@oro-ai/sdk 1.0.83 → 1.0.84
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 +13 -1
- package/dist/index.d.ts +13 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +13 -1
package/dist/index.d.mts
CHANGED
|
@@ -550,6 +550,14 @@ type AgentVersionPublic = {
|
|
|
550
550
|
* When this version was submitted
|
|
551
551
|
*/
|
|
552
552
|
submitted_at: string;
|
|
553
|
+
/**
|
|
554
|
+
* UTC timestamp at which this version's code became / becomes public
|
|
555
|
+
*/
|
|
556
|
+
released_at: string;
|
|
557
|
+
/**
|
|
558
|
+
* UTC timestamp at which the code artifact becomes downloadable. Alias for released_at kept as a distinct field for Frontend compatibility. ORO-1504.
|
|
559
|
+
*/
|
|
560
|
+
code_available_at: string;
|
|
553
561
|
/**
|
|
554
562
|
* Final score if eligible
|
|
555
563
|
*/
|
|
@@ -643,7 +651,7 @@ type AgentVersionStatus = {
|
|
|
643
651
|
*/
|
|
644
652
|
release_state?: ArtifactReleaseState;
|
|
645
653
|
/**
|
|
646
|
-
* When agent code becomes available for download (
|
|
654
|
+
* When agent code becomes available for download (= AgentVersion.released_at)
|
|
647
655
|
*/
|
|
648
656
|
code_available_at?: (string | null);
|
|
649
657
|
/**
|
|
@@ -945,6 +953,10 @@ type ClaimWorkResponse = {
|
|
|
945
953
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
946
954
|
*/
|
|
947
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);
|
|
948
960
|
};
|
|
949
961
|
type ClearCooldownResponse = {
|
|
950
962
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -550,6 +550,14 @@ type AgentVersionPublic = {
|
|
|
550
550
|
* When this version was submitted
|
|
551
551
|
*/
|
|
552
552
|
submitted_at: string;
|
|
553
|
+
/**
|
|
554
|
+
* UTC timestamp at which this version's code became / becomes public
|
|
555
|
+
*/
|
|
556
|
+
released_at: string;
|
|
557
|
+
/**
|
|
558
|
+
* UTC timestamp at which the code artifact becomes downloadable. Alias for released_at kept as a distinct field for Frontend compatibility. ORO-1504.
|
|
559
|
+
*/
|
|
560
|
+
code_available_at: string;
|
|
553
561
|
/**
|
|
554
562
|
* Final score if eligible
|
|
555
563
|
*/
|
|
@@ -643,7 +651,7 @@ type AgentVersionStatus = {
|
|
|
643
651
|
*/
|
|
644
652
|
release_state?: ArtifactReleaseState;
|
|
645
653
|
/**
|
|
646
|
-
* When agent code becomes available for download (
|
|
654
|
+
* When agent code becomes available for download (= AgentVersion.released_at)
|
|
647
655
|
*/
|
|
648
656
|
code_available_at?: (string | null);
|
|
649
657
|
/**
|
|
@@ -945,6 +953,10 @@ type ClaimWorkResponse = {
|
|
|
945
953
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
946
954
|
*/
|
|
947
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);
|
|
948
960
|
};
|
|
949
961
|
type ClearCooldownResponse = {
|
|
950
962
|
/**
|
package/package.json
CHANGED
|
@@ -567,6 +567,14 @@ export type AgentVersionPublic = {
|
|
|
567
567
|
* When this version was submitted
|
|
568
568
|
*/
|
|
569
569
|
submitted_at: string;
|
|
570
|
+
/**
|
|
571
|
+
* UTC timestamp at which this version's code became / becomes public
|
|
572
|
+
*/
|
|
573
|
+
released_at: string;
|
|
574
|
+
/**
|
|
575
|
+
* UTC timestamp at which the code artifact becomes downloadable. Alias for released_at kept as a distinct field for Frontend compatibility. ORO-1504.
|
|
576
|
+
*/
|
|
577
|
+
code_available_at: string;
|
|
570
578
|
/**
|
|
571
579
|
* Final score if eligible
|
|
572
580
|
*/
|
|
@@ -663,7 +671,7 @@ export type AgentVersionStatus = {
|
|
|
663
671
|
*/
|
|
664
672
|
release_state?: ArtifactReleaseState;
|
|
665
673
|
/**
|
|
666
|
-
* When agent code becomes available for download (
|
|
674
|
+
* When agent code becomes available for download (= AgentVersion.released_at)
|
|
667
675
|
*/
|
|
668
676
|
code_available_at?: (string | null);
|
|
669
677
|
/**
|
|
@@ -986,6 +994,10 @@ export type ClaimWorkResponse = {
|
|
|
986
994
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
987
995
|
*/
|
|
988
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);
|
|
989
1001
|
};
|
|
990
1002
|
|
|
991
1003
|
export type ClearCooldownResponse = {
|