@oro-ai/sdk 1.0.103 → 1.0.105
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 +13 -0
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +13 -0
package/dist/index.d.mts
CHANGED
|
@@ -1341,6 +1341,7 @@ type EvaluationRunDetail = {
|
|
|
1341
1341
|
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1342
1342
|
execution_contract_id?: (string | null);
|
|
1343
1343
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1344
|
+
items?: (EvaluationItemsRead | null);
|
|
1344
1345
|
};
|
|
1345
1346
|
type EvaluationRunPublic = {
|
|
1346
1347
|
/**
|
|
@@ -2921,6 +2922,17 @@ type SuitePublic = {
|
|
|
2921
2922
|
* Whether this suite is currently active
|
|
2922
2923
|
*/
|
|
2923
2924
|
is_active: boolean;
|
|
2925
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
2926
|
+
environment?: (SafeEnvironmentMetadata | null);
|
|
2927
|
+
execution_contract_id?: (string | null);
|
|
2928
|
+
/**
|
|
2929
|
+
* Envpack benchmark display name (from server config).
|
|
2930
|
+
*/
|
|
2931
|
+
benchmark_name?: (string | null);
|
|
2932
|
+
/**
|
|
2933
|
+
* 1-indexed envpack suite number, independent of suite_version.
|
|
2934
|
+
*/
|
|
2935
|
+
benchmark_number?: (number | null);
|
|
2924
2936
|
};
|
|
2925
2937
|
type SuiteWithProblemsResponse = {
|
|
2926
2938
|
/**
|
|
@@ -2931,6 +2943,7 @@ type SuiteWithProblemsResponse = {
|
|
|
2931
2943
|
* Problems in this suite
|
|
2932
2944
|
*/
|
|
2933
2945
|
problems: Array<ProblemPublic>;
|
|
2946
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
2934
2947
|
};
|
|
2935
2948
|
type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|
|
2936
2949
|
type TopAgentResponse = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1341,6 +1341,7 @@ type EvaluationRunDetail = {
|
|
|
1341
1341
|
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1342
1342
|
execution_contract_id?: (string | null);
|
|
1343
1343
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1344
|
+
items?: (EvaluationItemsRead | null);
|
|
1344
1345
|
};
|
|
1345
1346
|
type EvaluationRunPublic = {
|
|
1346
1347
|
/**
|
|
@@ -2921,6 +2922,17 @@ type SuitePublic = {
|
|
|
2921
2922
|
* Whether this suite is currently active
|
|
2922
2923
|
*/
|
|
2923
2924
|
is_active: boolean;
|
|
2925
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
2926
|
+
environment?: (SafeEnvironmentMetadata | null);
|
|
2927
|
+
execution_contract_id?: (string | null);
|
|
2928
|
+
/**
|
|
2929
|
+
* Envpack benchmark display name (from server config).
|
|
2930
|
+
*/
|
|
2931
|
+
benchmark_name?: (string | null);
|
|
2932
|
+
/**
|
|
2933
|
+
* 1-indexed envpack suite number, independent of suite_version.
|
|
2934
|
+
*/
|
|
2935
|
+
benchmark_number?: (number | null);
|
|
2924
2936
|
};
|
|
2925
2937
|
type SuiteWithProblemsResponse = {
|
|
2926
2938
|
/**
|
|
@@ -2931,6 +2943,7 @@ type SuiteWithProblemsResponse = {
|
|
|
2931
2943
|
* Problems in this suite
|
|
2932
2944
|
*/
|
|
2933
2945
|
problems: Array<ProblemPublic>;
|
|
2946
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
2934
2947
|
};
|
|
2935
2948
|
type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|
|
2936
2949
|
type TopAgentResponse = {
|
package/package.json
CHANGED
|
@@ -1405,6 +1405,7 @@ export type EvaluationRunDetail = {
|
|
|
1405
1405
|
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1406
1406
|
execution_contract_id?: (string | null);
|
|
1407
1407
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1408
|
+
items?: (EvaluationItemsRead | null);
|
|
1408
1409
|
};
|
|
1409
1410
|
|
|
1410
1411
|
export type EvaluationRunPublic = {
|
|
@@ -3076,6 +3077,17 @@ export type SuitePublic = {
|
|
|
3076
3077
|
* Whether this suite is currently active
|
|
3077
3078
|
*/
|
|
3078
3079
|
is_active: boolean;
|
|
3080
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
3081
|
+
environment?: (SafeEnvironmentMetadata | null);
|
|
3082
|
+
execution_contract_id?: (string | null);
|
|
3083
|
+
/**
|
|
3084
|
+
* Envpack benchmark display name (from server config).
|
|
3085
|
+
*/
|
|
3086
|
+
benchmark_name?: (string | null);
|
|
3087
|
+
/**
|
|
3088
|
+
* 1-indexed envpack suite number, independent of suite_version.
|
|
3089
|
+
*/
|
|
3090
|
+
benchmark_number?: (number | null);
|
|
3079
3091
|
};
|
|
3080
3092
|
|
|
3081
3093
|
export type SuiteWithProblemsResponse = {
|
|
@@ -3087,6 +3099,7 @@ export type SuiteWithProblemsResponse = {
|
|
|
3087
3099
|
* Problems in this suite
|
|
3088
3100
|
*/
|
|
3089
3101
|
problems: Array<ProblemPublic>;
|
|
3102
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
3090
3103
|
};
|
|
3091
3104
|
|
|
3092
3105
|
export type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|