@oro-ai/sdk 1.0.9 → 1.0.11

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
@@ -173,6 +173,10 @@ type AdminEvaluationRunEntry = {
173
173
  * Reason for invalidation
174
174
  */
175
175
  invalidation_reason?: (string | null);
176
+ /**
177
+ * Reason for failure
178
+ */
179
+ failure_reason?: (string | null);
176
180
  /**
177
181
  * When the run was created
178
182
  */
@@ -938,6 +942,12 @@ type CompleteRunRequest = {
938
942
  * Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
939
943
  */
940
944
  failure_reason?: (string | null);
945
+ /**
946
+ * Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
947
+ */
948
+ sandbox_metadata?: ({
949
+ [key: string]: unknown;
950
+ } | null);
941
951
  };
942
952
  /**
943
953
  * Response for run completion.
@@ -1183,6 +1193,12 @@ type EvaluationRunPublic = {
1183
1193
  service_versions?: ({
1184
1194
  [key: string]: (string);
1185
1195
  } | null);
1196
+ /**
1197
+ * Sandbox execution details
1198
+ */
1199
+ sandbox_metadata?: ({
1200
+ [key: string]: unknown;
1201
+ } | null);
1186
1202
  };
1187
1203
  /**
1188
1204
  * Status of an evaluation run through its lifecycle.
package/dist/index.d.ts CHANGED
@@ -173,6 +173,10 @@ type AdminEvaluationRunEntry = {
173
173
  * Reason for invalidation
174
174
  */
175
175
  invalidation_reason?: (string | null);
176
+ /**
177
+ * Reason for failure
178
+ */
179
+ failure_reason?: (string | null);
176
180
  /**
177
181
  * When the run was created
178
182
  */
@@ -938,6 +942,12 @@ type CompleteRunRequest = {
938
942
  * Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
939
943
  */
940
944
  failure_reason?: (string | null);
945
+ /**
946
+ * Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
947
+ */
948
+ sandbox_metadata?: ({
949
+ [key: string]: unknown;
950
+ } | null);
941
951
  };
942
952
  /**
943
953
  * Response for run completion.
@@ -1183,6 +1193,12 @@ type EvaluationRunPublic = {
1183
1193
  service_versions?: ({
1184
1194
  [key: string]: (string);
1185
1195
  } | null);
1196
+ /**
1197
+ * Sandbox execution details
1198
+ */
1199
+ sandbox_metadata?: ({
1200
+ [key: string]: unknown;
1201
+ } | null);
1186
1202
  };
1187
1203
  /**
1188
1204
  * 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.9",
3
+ "version": "1.0.11",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -176,6 +176,10 @@ export type AdminEvaluationRunEntry = {
176
176
  * Reason for invalidation
177
177
  */
178
178
  invalidation_reason?: (string | null);
179
+ /**
180
+ * Reason for failure
181
+ */
182
+ failure_reason?: (string | null);
179
183
  /**
180
184
  * When the run was created
181
185
  */
@@ -980,6 +984,12 @@ export type CompleteRunRequest = {
980
984
  * Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
981
985
  */
982
986
  failure_reason?: (string | null);
987
+ /**
988
+ * Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
989
+ */
990
+ sandbox_metadata?: ({
991
+ [key: string]: unknown;
992
+ } | null);
983
993
  };
984
994
 
985
995
  /**
@@ -1233,6 +1243,12 @@ export type EvaluationRunPublic = {
1233
1243
  */
1234
1244
  service_versions?: ({
1235
1245
  [key: string]: (string);
1246
+ } | null);
1247
+ /**
1248
+ * Sandbox execution details
1249
+ */
1250
+ sandbox_metadata?: ({
1251
+ [key: string]: unknown;
1236
1252
  } | null);
1237
1253
  };
1238
1254