@oro-ai/sdk 1.0.45 → 1.0.47

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
@@ -588,6 +588,14 @@ type AgentVersionStatus = {
588
588
  per_validator_success_scores?: ({
589
589
  [key: string]: (number);
590
590
  } | null);
591
+ /**
592
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
593
+ */
594
+ is_active_qualifier?: boolean;
595
+ /**
596
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
597
+ */
598
+ outranked_by_agent_version_id?: (string | null);
591
599
  };
592
600
  type AgentVersionVariance = {
593
601
  /**
@@ -1442,6 +1450,14 @@ type LeaderboardEntry = {
1442
1450
  * When this agent became top
1443
1451
  */
1444
1452
  top_at?: (string | null);
1453
+ /**
1454
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
1455
+ */
1456
+ is_active_qualifier?: boolean;
1457
+ /**
1458
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
1459
+ */
1460
+ outranked_by_agent_version_id?: (string | null);
1445
1461
  };
1446
1462
  type LeaderboardResponse = {
1447
1463
  /**
@@ -1630,6 +1646,10 @@ type PendingEvaluationSummary = {
1630
1646
  * Sum of active runs across all items
1631
1647
  */
1632
1648
  total_runs_active: number;
1649
+ /**
1650
+ * Projected UTC timestamp when the queue will fully drain. Null when the queue is empty, no validators are currently active, or there is insufficient evaluation history to project.
1651
+ */
1652
+ projected_completion_at?: (string | null);
1633
1653
  };
1634
1654
  type PresignUploadRequest = {
1635
1655
  /**
@@ -1895,6 +1915,10 @@ type RacePublic = {
1895
1915
  * When the race was created
1896
1916
  */
1897
1917
  created_at?: (string | null);
1918
+ /**
1919
+ * Projected UTC timestamp when the race will complete. Set only on RACE_RUNNING races; null otherwise or when there is insufficient evaluation history or no active validators.
1920
+ */
1921
+ projected_completion_at?: (string | null);
1898
1922
  };
1899
1923
  type RaceQualifierEntry = {
1900
1924
  /**
@@ -2115,6 +2139,10 @@ type ReinstateRequest = {
2115
2139
  * Specific suite to reinstate for
2116
2140
  */
2117
2141
  suite_id?: (number | null);
2142
+ /**
2143
+ * Optional reason captured in the audit trail
2144
+ */
2145
+ reason?: (string | null);
2118
2146
  };
2119
2147
  type RunAlreadyCompleteError = {
2120
2148
  /**
package/dist/index.d.ts CHANGED
@@ -588,6 +588,14 @@ type AgentVersionStatus = {
588
588
  per_validator_success_scores?: ({
589
589
  [key: string]: (number);
590
590
  } | null);
591
+ /**
592
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
593
+ */
594
+ is_active_qualifier?: boolean;
595
+ /**
596
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
597
+ */
598
+ outranked_by_agent_version_id?: (string | null);
591
599
  };
592
600
  type AgentVersionVariance = {
593
601
  /**
@@ -1442,6 +1450,14 @@ type LeaderboardEntry = {
1442
1450
  * When this agent became top
1443
1451
  */
1444
1452
  top_at?: (string | null);
1453
+ /**
1454
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
1455
+ */
1456
+ is_active_qualifier?: boolean;
1457
+ /**
1458
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
1459
+ */
1460
+ outranked_by_agent_version_id?: (string | null);
1445
1461
  };
1446
1462
  type LeaderboardResponse = {
1447
1463
  /**
@@ -1630,6 +1646,10 @@ type PendingEvaluationSummary = {
1630
1646
  * Sum of active runs across all items
1631
1647
  */
1632
1648
  total_runs_active: number;
1649
+ /**
1650
+ * Projected UTC timestamp when the queue will fully drain. Null when the queue is empty, no validators are currently active, or there is insufficient evaluation history to project.
1651
+ */
1652
+ projected_completion_at?: (string | null);
1633
1653
  };
1634
1654
  type PresignUploadRequest = {
1635
1655
  /**
@@ -1895,6 +1915,10 @@ type RacePublic = {
1895
1915
  * When the race was created
1896
1916
  */
1897
1917
  created_at?: (string | null);
1918
+ /**
1919
+ * Projected UTC timestamp when the race will complete. Set only on RACE_RUNNING races; null otherwise or when there is insufficient evaluation history or no active validators.
1920
+ */
1921
+ projected_completion_at?: (string | null);
1898
1922
  };
1899
1923
  type RaceQualifierEntry = {
1900
1924
  /**
@@ -2115,6 +2139,10 @@ type ReinstateRequest = {
2115
2139
  * Specific suite to reinstate for
2116
2140
  */
2117
2141
  suite_id?: (number | null);
2142
+ /**
2143
+ * Optional reason captured in the audit trail
2144
+ */
2145
+ reason?: (string | null);
2118
2146
  };
2119
2147
  type RunAlreadyCompleteError = {
2120
2148
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -608,6 +608,14 @@ export type AgentVersionStatus = {
608
608
  per_validator_success_scores?: ({
609
609
  [key: string]: (number);
610
610
  } | null);
611
+ /**
612
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
613
+ */
614
+ is_active_qualifier?: boolean;
615
+ /**
616
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
617
+ */
618
+ outranked_by_agent_version_id?: (string | null);
611
619
  };
612
620
 
613
621
  export type AgentVersionVariance = {
@@ -1511,6 +1519,14 @@ export type LeaderboardEntry = {
1511
1519
  * When this agent became top
1512
1520
  */
1513
1521
  top_at?: (string | null);
1522
+ /**
1523
+ * True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
1524
+ */
1525
+ is_active_qualifier?: boolean;
1526
+ /**
1527
+ * Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
1528
+ */
1529
+ outranked_by_agent_version_id?: (string | null);
1514
1530
  };
1515
1531
 
1516
1532
  export type LeaderboardResponse = {
@@ -1711,6 +1727,10 @@ export type PendingEvaluationSummary = {
1711
1727
  * Sum of active runs across all items
1712
1728
  */
1713
1729
  total_runs_active: number;
1730
+ /**
1731
+ * Projected UTC timestamp when the queue will fully drain. Null when the queue is empty, no validators are currently active, or there is insufficient evaluation history to project.
1732
+ */
1733
+ projected_completion_at?: (string | null);
1714
1734
  };
1715
1735
 
1716
1736
  export type PresignUploadRequest = {
@@ -1991,6 +2011,10 @@ export type RacePublic = {
1991
2011
  * When the race was created
1992
2012
  */
1993
2013
  created_at?: (string | null);
2014
+ /**
2015
+ * Projected UTC timestamp when the race will complete. Set only on RACE_RUNNING races; null otherwise or when there is insufficient evaluation history or no active validators.
2016
+ */
2017
+ projected_completion_at?: (string | null);
1994
2018
  };
1995
2019
 
1996
2020
  export type RaceQualifierEntry = {
@@ -2222,6 +2246,10 @@ export type ReinstateRequest = {
2222
2246
  * Specific suite to reinstate for
2223
2247
  */
2224
2248
  suite_id?: (number | null);
2249
+ /**
2250
+ * Optional reason captured in the audit trail
2251
+ */
2252
+ reason?: (string | null);
2225
2253
  };
2226
2254
 
2227
2255
  export type RunAlreadyCompleteError = {