@oro-ai/sdk 1.0.45 → 1.0.46

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
@@ -1630,6 +1630,10 @@ type PendingEvaluationSummary = {
1630
1630
  * Sum of active runs across all items
1631
1631
  */
1632
1632
  total_runs_active: number;
1633
+ /**
1634
+ * 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.
1635
+ */
1636
+ projected_completion_at?: (string | null);
1633
1637
  };
1634
1638
  type PresignUploadRequest = {
1635
1639
  /**
@@ -1895,6 +1899,10 @@ type RacePublic = {
1895
1899
  * When the race was created
1896
1900
  */
1897
1901
  created_at?: (string | null);
1902
+ /**
1903
+ * 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.
1904
+ */
1905
+ projected_completion_at?: (string | null);
1898
1906
  };
1899
1907
  type RaceQualifierEntry = {
1900
1908
  /**
@@ -2115,6 +2123,10 @@ type ReinstateRequest = {
2115
2123
  * Specific suite to reinstate for
2116
2124
  */
2117
2125
  suite_id?: (number | null);
2126
+ /**
2127
+ * Optional reason captured in the audit trail
2128
+ */
2129
+ reason?: (string | null);
2118
2130
  };
2119
2131
  type RunAlreadyCompleteError = {
2120
2132
  /**
package/dist/index.d.ts CHANGED
@@ -1630,6 +1630,10 @@ type PendingEvaluationSummary = {
1630
1630
  * Sum of active runs across all items
1631
1631
  */
1632
1632
  total_runs_active: number;
1633
+ /**
1634
+ * 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.
1635
+ */
1636
+ projected_completion_at?: (string | null);
1633
1637
  };
1634
1638
  type PresignUploadRequest = {
1635
1639
  /**
@@ -1895,6 +1899,10 @@ type RacePublic = {
1895
1899
  * When the race was created
1896
1900
  */
1897
1901
  created_at?: (string | null);
1902
+ /**
1903
+ * 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.
1904
+ */
1905
+ projected_completion_at?: (string | null);
1898
1906
  };
1899
1907
  type RaceQualifierEntry = {
1900
1908
  /**
@@ -2115,6 +2123,10 @@ type ReinstateRequest = {
2115
2123
  * Specific suite to reinstate for
2116
2124
  */
2117
2125
  suite_id?: (number | null);
2126
+ /**
2127
+ * Optional reason captured in the audit trail
2128
+ */
2129
+ reason?: (string | null);
2118
2130
  };
2119
2131
  type RunAlreadyCompleteError = {
2120
2132
  /**
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.46",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1711,6 +1711,10 @@ export type PendingEvaluationSummary = {
1711
1711
  * Sum of active runs across all items
1712
1712
  */
1713
1713
  total_runs_active: number;
1714
+ /**
1715
+ * 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.
1716
+ */
1717
+ projected_completion_at?: (string | null);
1714
1718
  };
1715
1719
 
1716
1720
  export type PresignUploadRequest = {
@@ -1991,6 +1995,10 @@ export type RacePublic = {
1991
1995
  * When the race was created
1992
1996
  */
1993
1997
  created_at?: (string | null);
1998
+ /**
1999
+ * 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.
2000
+ */
2001
+ projected_completion_at?: (string | null);
1994
2002
  };
1995
2003
 
1996
2004
  export type RaceQualifierEntry = {
@@ -2222,6 +2230,10 @@ export type ReinstateRequest = {
2222
2230
  * Specific suite to reinstate for
2223
2231
  */
2224
2232
  suite_id?: (number | null);
2233
+ /**
2234
+ * Optional reason captured in the audit trail
2235
+ */
2236
+ reason?: (string | null);
2225
2237
  };
2226
2238
 
2227
2239
  export type RunAlreadyCompleteError = {