@oro-ai/sdk 1.0.104 → 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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +12 -0
package/dist/index.d.mts
CHANGED
|
@@ -2922,6 +2922,17 @@ type SuitePublic = {
|
|
|
2922
2922
|
* Whether this suite is currently active
|
|
2923
2923
|
*/
|
|
2924
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);
|
|
2925
2936
|
};
|
|
2926
2937
|
type SuiteWithProblemsResponse = {
|
|
2927
2938
|
/**
|
|
@@ -2932,6 +2943,7 @@ type SuiteWithProblemsResponse = {
|
|
|
2932
2943
|
* Problems in this suite
|
|
2933
2944
|
*/
|
|
2934
2945
|
problems: Array<ProblemPublic>;
|
|
2946
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
2935
2947
|
};
|
|
2936
2948
|
type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|
|
2937
2949
|
type TopAgentResponse = {
|
package/dist/index.d.ts
CHANGED
|
@@ -2922,6 +2922,17 @@ type SuitePublic = {
|
|
|
2922
2922
|
* Whether this suite is currently active
|
|
2923
2923
|
*/
|
|
2924
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);
|
|
2925
2936
|
};
|
|
2926
2937
|
type SuiteWithProblemsResponse = {
|
|
2927
2938
|
/**
|
|
@@ -2932,6 +2943,7 @@ type SuiteWithProblemsResponse = {
|
|
|
2932
2943
|
* Problems in this suite
|
|
2933
2944
|
*/
|
|
2934
2945
|
problems: Array<ProblemPublic>;
|
|
2946
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
2935
2947
|
};
|
|
2936
2948
|
type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|
|
2937
2949
|
type TopAgentResponse = {
|
package/package.json
CHANGED
|
@@ -3077,6 +3077,17 @@ export type SuitePublic = {
|
|
|
3077
3077
|
* Whether this suite is currently active
|
|
3078
3078
|
*/
|
|
3079
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);
|
|
3080
3091
|
};
|
|
3081
3092
|
|
|
3082
3093
|
export type SuiteWithProblemsResponse = {
|
|
@@ -3088,6 +3099,7 @@ export type SuiteWithProblemsResponse = {
|
|
|
3088
3099
|
* Problems in this suite
|
|
3089
3100
|
*/
|
|
3090
3101
|
problems: Array<ProblemPublic>;
|
|
3102
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
3091
3103
|
};
|
|
3092
3104
|
|
|
3093
3105
|
export type TerminalStatus = 'SUCCESS' | 'FAILED' | 'TIMED_OUT';
|