@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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +6 -0
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
|
@@ -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
|
/**
|