@oro-ai/sdk 1.0.18 → 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
@@ -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
@@ -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.18",
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",
@@ -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
  };