@oro-ai/sdk 1.0.29 → 1.0.30

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.
@@ -2955,6 +2963,12 @@ type GetAgentVersionProblemsData = {
2955
2963
  */
2956
2964
  agent_version_id: string;
2957
2965
  };
2966
+ query?: {
2967
+ /**
2968
+ * Filter by evaluation phase (QUALIFYING or RACE)
2969
+ */
2970
+ phase?: (string | null);
2971
+ };
2958
2972
  };
2959
2973
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
2960
2974
  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.
@@ -2955,6 +2963,12 @@ type GetAgentVersionProblemsData = {
2955
2963
  */
2956
2964
  agent_version_id: string;
2957
2965
  };
2966
+ query?: {
2967
+ /**
2968
+ * Filter by evaluation phase (QUALIFYING or RACE)
2969
+ */
2970
+ phase?: (string | null);
2971
+ };
2958
2972
  };
2959
2973
  type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
2960
2974
  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.30",
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
  /**
@@ -3109,6 +3117,12 @@ export type GetAgentVersionProblemsData = {
3109
3117
  */
3110
3118
  agent_version_id: string;
3111
3119
  };
3120
+ query?: {
3121
+ /**
3122
+ * Filter by evaluation phase (QUALIFYING or RACE)
3123
+ */
3124
+ phase?: (string | null);
3125
+ };
3112
3126
  };
3113
3127
 
3114
3128
  export type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);