@oro-ai/sdk 1.0.36 → 1.0.37

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
@@ -1170,6 +1170,10 @@ type EvaluationRunPublic = {
1170
1170
  * Race ID if this is a race-phase evaluation
1171
1171
  */
1172
1172
  race_id?: (string | null);
1173
+ /**
1174
+ * Race number if this is a race-phase evaluation
1175
+ */
1176
+ race_number?: (number | null);
1173
1177
  };
1174
1178
  /**
1175
1179
  * Status of an evaluation run through its lifecycle.
package/dist/index.d.ts CHANGED
@@ -1170,6 +1170,10 @@ type EvaluationRunPublic = {
1170
1170
  * Race ID if this is a race-phase evaluation
1171
1171
  */
1172
1172
  race_id?: (string | null);
1173
+ /**
1174
+ * Race number if this is a race-phase evaluation
1175
+ */
1176
+ race_number?: (number | null);
1173
1177
  };
1174
1178
  /**
1175
1179
  * Status of an evaluation run through its lifecycle.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1225,6 +1225,10 @@ export type EvaluationRunPublic = {
1225
1225
  * Race ID if this is a race-phase evaluation
1226
1226
  */
1227
1227
  race_id?: (string | null);
1228
+ /**
1229
+ * Race number if this is a race-phase evaluation
1230
+ */
1231
+ race_number?: (number | null);
1228
1232
  };
1229
1233
 
1230
1234
  /**