@oro-ai/sdk 1.0.29 → 1.0.31

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
@@ -1290,6 +1290,14 @@ type EvaluationRunPublic = {
1290
1290
  sandbox_metadata?: ({
1291
1291
  [key: string]: unknown;
1292
1292
  } | null);
1293
+ /**
1294
+ * Evaluation phase (QUALIFYING or RACE)
1295
+ */
1296
+ phase?: (string | null);
1297
+ /**
1298
+ * Race ID if this is a race-phase evaluation
1299
+ */
1300
+ race_id?: (string | null);
1293
1301
  };
1294
1302
  /**
1295
1303
  * Status of an evaluation run through its lifecycle.
@@ -1799,6 +1807,14 @@ type ProblemProgressEntry = {
1799
1807
  * Problem category
1800
1808
  */
1801
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);
1802
1818
  /**
1803
1819
  * Results from each validator that evaluated this problem
1804
1820
  */
@@ -2955,6 +2971,12 @@ type GetAgentVersionProblemsData = {
2955
2971
  */
2956
2972
  agent_version_id: string;
2957
2973
  };
2974
+ query?: {
2975
+ /**
2976
+ * Filter by evaluation phase (QUALIFYING or RACE)
2977
+ */
2978
+ phase?: (string | null);
2979
+ };
2958
2980
  };
2959
2981
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
2960
2982
  type GetAgentVersionProblemsError = (AgentVersionNotFoundError | HTTPValidationError);
package/dist/index.d.ts CHANGED
@@ -1290,6 +1290,14 @@ type EvaluationRunPublic = {
1290
1290
  sandbox_metadata?: ({
1291
1291
  [key: string]: unknown;
1292
1292
  } | null);
1293
+ /**
1294
+ * Evaluation phase (QUALIFYING or RACE)
1295
+ */
1296
+ phase?: (string | null);
1297
+ /**
1298
+ * Race ID if this is a race-phase evaluation
1299
+ */
1300
+ race_id?: (string | null);
1293
1301
  };
1294
1302
  /**
1295
1303
  * Status of an evaluation run through its lifecycle.
@@ -1799,6 +1807,14 @@ type ProblemProgressEntry = {
1799
1807
  * Problem category
1800
1808
  */
1801
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);
1802
1818
  /**
1803
1819
  * Results from each validator that evaluated this problem
1804
1820
  */
@@ -2955,6 +2971,12 @@ type GetAgentVersionProblemsData = {
2955
2971
  */
2956
2972
  agent_version_id: string;
2957
2973
  };
2974
+ query?: {
2975
+ /**
2976
+ * Filter by evaluation phase (QUALIFYING or RACE)
2977
+ */
2978
+ phase?: (string | null);
2979
+ };
2958
2980
  };
2959
2981
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
2960
2982
  type GetAgentVersionProblemsError = (AgentVersionNotFoundError | HTTPValidationError);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1344,6 +1344,14 @@ export type EvaluationRunPublic = {
1344
1344
  sandbox_metadata?: ({
1345
1345
  [key: string]: unknown;
1346
1346
  } | null);
1347
+ /**
1348
+ * Evaluation phase (QUALIFYING or RACE)
1349
+ */
1350
+ phase?: (string | null);
1351
+ /**
1352
+ * Race ID if this is a race-phase evaluation
1353
+ */
1354
+ race_id?: (string | null);
1347
1355
  };
1348
1356
 
1349
1357
  /**
@@ -1881,6 +1889,14 @@ export type ProblemProgressEntry = {
1881
1889
  * Problem category
1882
1890
  */
1883
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);
1884
1900
  /**
1885
1901
  * Results from each validator that evaluated this problem
1886
1902
  */
@@ -3109,6 +3125,12 @@ export type GetAgentVersionProblemsData = {
3109
3125
  */
3110
3126
  agent_version_id: string;
3111
3127
  };
3128
+ query?: {
3129
+ /**
3130
+ * Filter by evaluation phase (QUALIFYING or RACE)
3131
+ */
3132
+ phase?: (string | null);
3133
+ };
3112
3134
  };
3113
3135
 
3114
3136
  export type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);