@oro-ai/sdk 1.0.17 → 1.0.19

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
@@ -734,7 +734,7 @@ type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
734
734
  /**
735
735
  * Type of artifact for download.
736
736
  */
737
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
737
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
738
738
  /**
739
739
  * 409 - Validator is at maximum concurrent evaluation capacity.
740
740
  */
@@ -2232,6 +2232,10 @@ type TopHistoryEntry = {
2232
2232
  * Previously held top agent status
2233
2233
  */
2234
2234
  was_top: boolean;
2235
+ /**
2236
+ * Suite this top status was earned on
2237
+ */
2238
+ suite_id: number;
2235
2239
  };
2236
2240
  /**
2237
2241
  * Response for top agent history endpoint.
@@ -2573,7 +2577,7 @@ type GetTopAgentError = unknown;
2573
2577
  type GetTopHistoryData = {
2574
2578
  query?: {
2575
2579
  /**
2576
- * Suite ID (defaults to current)
2580
+ * Suite ID (omit for all suites)
2577
2581
  */
2578
2582
  suite_id?: (number | null);
2579
2583
  };
package/dist/index.d.ts CHANGED
@@ -734,7 +734,7 @@ type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
734
734
  /**
735
735
  * Type of artifact for download.
736
736
  */
737
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
737
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
738
738
  /**
739
739
  * 409 - Validator is at maximum concurrent evaluation capacity.
740
740
  */
@@ -2232,6 +2232,10 @@ type TopHistoryEntry = {
2232
2232
  * Previously held top agent status
2233
2233
  */
2234
2234
  was_top: boolean;
2235
+ /**
2236
+ * Suite this top status was earned on
2237
+ */
2238
+ suite_id: number;
2235
2239
  };
2236
2240
  /**
2237
2241
  * Response for top agent history endpoint.
@@ -2573,7 +2577,7 @@ type GetTopAgentError = unknown;
2573
2577
  type GetTopHistoryData = {
2574
2578
  query?: {
2575
2579
  /**
2576
- * Suite ID (defaults to current)
2580
+ * Suite ID (omit for all suites)
2577
2581
  */
2578
2582
  suite_id?: (number | null);
2579
2583
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -763,7 +763,7 @@ export type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
763
763
  /**
764
764
  * Type of artifact for download.
765
765
  */
766
- export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
766
+ export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
767
767
 
768
768
  /**
769
769
  * 409 - Validator is at maximum concurrent evaluation capacity.
@@ -2337,6 +2337,10 @@ export type TopHistoryEntry = {
2337
2337
  * Previously held top agent status
2338
2338
  */
2339
2339
  was_top: boolean;
2340
+ /**
2341
+ * Suite this top status was earned on
2342
+ */
2343
+ suite_id: number;
2340
2344
  };
2341
2345
 
2342
2346
  /**
@@ -2703,7 +2707,7 @@ export type GetTopAgentError = unknown;
2703
2707
  export type GetTopHistoryData = {
2704
2708
  query?: {
2705
2709
  /**
2706
- * Suite ID (defaults to current)
2710
+ * Suite ID (omit for all suites)
2707
2711
  */
2708
2712
  suite_id?: (number | null);
2709
2713
  };