@oro-ai/sdk 1.0.0 → 1.0.2

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
@@ -212,6 +212,10 @@ type AgentVersionStatus = {
212
212
  * Whether artifacts are released
213
213
  */
214
214
  release_state?: ArtifactReleaseState;
215
+ /**
216
+ * When agent code becomes available for download (eligible_at + 24h)
217
+ */
218
+ code_available_at?: (string | null);
215
219
  /**
216
220
  * Per-validator scores on success
217
221
  */
@@ -1770,6 +1774,10 @@ type ValidatorNotFoundError = {
1770
1774
  * Result from a single validator for a specific problem.
1771
1775
  */
1772
1776
  type ValidatorProblemResult = {
1777
+ /**
1778
+ * Evaluation run ID this result belongs to
1779
+ */
1780
+ eval_run_id: string;
1773
1781
  /**
1774
1782
  * Validator hotkey
1775
1783
  */
package/dist/index.d.ts CHANGED
@@ -212,6 +212,10 @@ type AgentVersionStatus = {
212
212
  * Whether artifacts are released
213
213
  */
214
214
  release_state?: ArtifactReleaseState;
215
+ /**
216
+ * When agent code becomes available for download (eligible_at + 24h)
217
+ */
218
+ code_available_at?: (string | null);
215
219
  /**
216
220
  * Per-validator scores on success
217
221
  */
@@ -1770,6 +1774,10 @@ type ValidatorNotFoundError = {
1770
1774
  * Result from a single validator for a specific problem.
1771
1775
  */
1772
1776
  type ValidatorProblemResult = {
1777
+ /**
1778
+ * Evaluation run ID this result belongs to
1779
+ */
1780
+ eval_run_id: string;
1773
1781
  /**
1774
1782
  * Validator hotkey
1775
1783
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -221,6 +221,10 @@ export type AgentVersionStatus = {
221
221
  * Whether artifacts are released
222
222
  */
223
223
  release_state?: ArtifactReleaseState;
224
+ /**
225
+ * When agent code becomes available for download (eligible_at + 24h)
226
+ */
227
+ code_available_at?: (string | null);
224
228
  /**
225
229
  * Per-validator scores on success
226
230
  */
@@ -1865,6 +1869,10 @@ export type ValidatorNotFoundError = {
1865
1869
  * Result from a single validator for a specific problem.
1866
1870
  */
1867
1871
  export type ValidatorProblemResult = {
1872
+ /**
1873
+ * Evaluation run ID this result belongs to
1874
+ */
1875
+ eval_run_id: string;
1868
1876
  /**
1869
1877
  * Validator hotkey
1870
1878
  */