@oro-ai/sdk 1.0.11 → 1.0.12

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
@@ -1116,6 +1116,12 @@ type EvaluationRunDetail = {
1116
1116
  * Reason for invalidation
1117
1117
  */
1118
1118
  invalidation_reason?: (string | null);
1119
+ /**
1120
+ * Sandbox execution details
1121
+ */
1122
+ sandbox_metadata?: ({
1123
+ [key: string]: unknown;
1124
+ } | null);
1119
1125
  };
1120
1126
  /**
1121
1127
  * Public representation of an evaluation run.
package/dist/index.d.ts CHANGED
@@ -1116,6 +1116,12 @@ type EvaluationRunDetail = {
1116
1116
  * Reason for invalidation
1117
1117
  */
1118
1118
  invalidation_reason?: (string | null);
1119
+ /**
1120
+ * Sandbox execution details
1121
+ */
1122
+ sandbox_metadata?: ({
1123
+ [key: string]: unknown;
1124
+ } | null);
1119
1125
  };
1120
1126
  /**
1121
1127
  * Public representation of an evaluation run.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1166,6 +1166,12 @@ export type EvaluationRunDetail = {
1166
1166
  * Reason for invalidation
1167
1167
  */
1168
1168
  invalidation_reason?: (string | null);
1169
+ /**
1170
+ * Sandbox execution details
1171
+ */
1172
+ sandbox_metadata?: ({
1173
+ [key: string]: unknown;
1174
+ } | null);
1169
1175
  };
1170
1176
 
1171
1177
  /**