@oro-ai/sdk 1.0.31 → 1.0.32
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -2976,6 +2976,10 @@ type GetAgentVersionProblemsData = {
|
|
|
2976
2976
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
2977
2977
|
*/
|
|
2978
2978
|
phase?: (string | null);
|
|
2979
|
+
/**
|
|
2980
|
+
* Filter to a specific race (implies phase=RACE)
|
|
2981
|
+
*/
|
|
2982
|
+
race_id?: (string | null);
|
|
2979
2983
|
};
|
|
2980
2984
|
};
|
|
2981
2985
|
type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
|
package/dist/index.d.ts
CHANGED
|
@@ -2976,6 +2976,10 @@ type GetAgentVersionProblemsData = {
|
|
|
2976
2976
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
2977
2977
|
*/
|
|
2978
2978
|
phase?: (string | null);
|
|
2979
|
+
/**
|
|
2980
|
+
* Filter to a specific race (implies phase=RACE)
|
|
2981
|
+
*/
|
|
2982
|
+
race_id?: (string | null);
|
|
2979
2983
|
};
|
|
2980
2984
|
};
|
|
2981
2985
|
type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
|
package/package.json
CHANGED
|
@@ -3130,6 +3130,10 @@ export type GetAgentVersionProblemsData = {
|
|
|
3130
3130
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
3131
3131
|
*/
|
|
3132
3132
|
phase?: (string | null);
|
|
3133
|
+
/**
|
|
3134
|
+
* Filter to a specific race (implies phase=RACE)
|
|
3135
|
+
*/
|
|
3136
|
+
race_id?: (string | null);
|
|
3133
3137
|
};
|
|
3134
3138
|
};
|
|
3135
3139
|
|