@oro-ai/sdk 1.0.83 → 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 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 (eligible_at + 24h)
654
+ * When agent code becomes available for download (= AgentVersion.released_at)
647
655
  */
648
656
  code_available_at?: (string | null);
649
657
  /**
@@ -942,7 +950,7 @@ type ClaimWorkResponse = {
942
950
  */
943
951
  code_download_url: string;
944
952
  /**
945
- * Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
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.
946
954
  */
947
955
  inference_token?: (InferenceTokenGrant | null);
948
956
  };
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 (eligible_at + 24h)
654
+ * When agent code becomes available for download (= AgentVersion.released_at)
647
655
  */
648
656
  code_available_at?: (string | null);
649
657
  /**
@@ -942,7 +950,7 @@ type ClaimWorkResponse = {
942
950
  */
943
951
  code_download_url: string;
944
952
  /**
945
- * Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
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.
946
954
  */
947
955
  inference_token?: (InferenceTokenGrant | null);
948
956
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -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 (eligible_at + 24h)
674
+ * When agent code becomes available for download (= AgentVersion.released_at)
667
675
  */
668
676
  code_available_at?: (string | null);
669
677
  /**
@@ -983,7 +991,7 @@ export type ClaimWorkResponse = {
983
991
  */
984
992
  code_download_url: string;
985
993
  /**
986
- * Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
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.
987
995
  */
988
996
  inference_token?: (InferenceTokenGrant | null);
989
997
  };