@oro-ai/sdk 1.0.30 → 1.0.32

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
@@ -1807,6 +1807,14 @@ type ProblemProgressEntry = {
1807
1807
  * Problem category
1808
1808
  */
1809
1809
  category?: (string | null);
1810
+ /**
1811
+ * Evaluation phase: QUALIFYING or RACE
1812
+ */
1813
+ phase?: (string | null);
1814
+ /**
1815
+ * Race ID when phase is RACE
1816
+ */
1817
+ race_id?: (string | null);
1810
1818
  /**
1811
1819
  * Results from each validator that evaluated this problem
1812
1820
  */
@@ -2968,6 +2976,10 @@ type GetAgentVersionProblemsData = {
2968
2976
  * Filter by evaluation phase (QUALIFYING or RACE)
2969
2977
  */
2970
2978
  phase?: (string | null);
2979
+ /**
2980
+ * Filter to a specific race (implies phase=RACE)
2981
+ */
2982
+ race_id?: (string | null);
2971
2983
  };
2972
2984
  };
2973
2985
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
package/dist/index.d.ts CHANGED
@@ -1807,6 +1807,14 @@ type ProblemProgressEntry = {
1807
1807
  * Problem category
1808
1808
  */
1809
1809
  category?: (string | null);
1810
+ /**
1811
+ * Evaluation phase: QUALIFYING or RACE
1812
+ */
1813
+ phase?: (string | null);
1814
+ /**
1815
+ * Race ID when phase is RACE
1816
+ */
1817
+ race_id?: (string | null);
1810
1818
  /**
1811
1819
  * Results from each validator that evaluated this problem
1812
1820
  */
@@ -2968,6 +2976,10 @@ type GetAgentVersionProblemsData = {
2968
2976
  * Filter by evaluation phase (QUALIFYING or RACE)
2969
2977
  */
2970
2978
  phase?: (string | null);
2979
+ /**
2980
+ * Filter to a specific race (implies phase=RACE)
2981
+ */
2982
+ race_id?: (string | null);
2971
2983
  };
2972
2984
  };
2973
2985
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1889,6 +1889,14 @@ export type ProblemProgressEntry = {
1889
1889
  * Problem category
1890
1890
  */
1891
1891
  category?: (string | null);
1892
+ /**
1893
+ * Evaluation phase: QUALIFYING or RACE
1894
+ */
1895
+ phase?: (string | null);
1896
+ /**
1897
+ * Race ID when phase is RACE
1898
+ */
1899
+ race_id?: (string | null);
1892
1900
  /**
1893
1901
  * Results from each validator that evaluated this problem
1894
1902
  */
@@ -3122,6 +3130,10 @@ export type GetAgentVersionProblemsData = {
3122
3130
  * Filter by evaluation phase (QUALIFYING or RACE)
3123
3131
  */
3124
3132
  phase?: (string | null);
3133
+ /**
3134
+ * Filter to a specific race (implies phase=RACE)
3135
+ */
3136
+ race_id?: (string | null);
3125
3137
  };
3126
3138
  };
3127
3139