@oro-ai/sdk 1.0.31 → 1.0.33
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 +20 -0
- package/dist/index.d.ts +20 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +20 -0
package/dist/index.d.mts
CHANGED
|
@@ -1709,6 +1709,14 @@ type PendingEvaluation = {
|
|
|
1709
1709
|
* When this work item was created
|
|
1710
1710
|
*/
|
|
1711
1711
|
queued_at: string;
|
|
1712
|
+
/**
|
|
1713
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
1714
|
+
*/
|
|
1715
|
+
phase?: (string | null);
|
|
1716
|
+
/**
|
|
1717
|
+
* Race ID when phase is RACE
|
|
1718
|
+
*/
|
|
1719
|
+
race_id?: (string | null);
|
|
1712
1720
|
};
|
|
1713
1721
|
/**
|
|
1714
1722
|
* Response for pending evaluations endpoint.
|
|
@@ -2303,6 +2311,14 @@ type RunningEvaluation = {
|
|
|
2303
2311
|
* Percentage of problems completed (0-100)
|
|
2304
2312
|
*/
|
|
2305
2313
|
progress_percent?: number;
|
|
2314
|
+
/**
|
|
2315
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2316
|
+
*/
|
|
2317
|
+
phase?: (string | null);
|
|
2318
|
+
/**
|
|
2319
|
+
* Race ID when phase is RACE
|
|
2320
|
+
*/
|
|
2321
|
+
race_id?: (string | null);
|
|
2306
2322
|
};
|
|
2307
2323
|
/**
|
|
2308
2324
|
* Problems for an evaluation run.
|
|
@@ -2976,6 +2992,10 @@ type GetAgentVersionProblemsData = {
|
|
|
2976
2992
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
2977
2993
|
*/
|
|
2978
2994
|
phase?: (string | null);
|
|
2995
|
+
/**
|
|
2996
|
+
* Filter to a specific race (implies phase=RACE)
|
|
2997
|
+
*/
|
|
2998
|
+
race_id?: (string | null);
|
|
2979
2999
|
};
|
|
2980
3000
|
};
|
|
2981
3001
|
type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
|
package/dist/index.d.ts
CHANGED
|
@@ -1709,6 +1709,14 @@ type PendingEvaluation = {
|
|
|
1709
1709
|
* When this work item was created
|
|
1710
1710
|
*/
|
|
1711
1711
|
queued_at: string;
|
|
1712
|
+
/**
|
|
1713
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
1714
|
+
*/
|
|
1715
|
+
phase?: (string | null);
|
|
1716
|
+
/**
|
|
1717
|
+
* Race ID when phase is RACE
|
|
1718
|
+
*/
|
|
1719
|
+
race_id?: (string | null);
|
|
1712
1720
|
};
|
|
1713
1721
|
/**
|
|
1714
1722
|
* Response for pending evaluations endpoint.
|
|
@@ -2303,6 +2311,14 @@ type RunningEvaluation = {
|
|
|
2303
2311
|
* Percentage of problems completed (0-100)
|
|
2304
2312
|
*/
|
|
2305
2313
|
progress_percent?: number;
|
|
2314
|
+
/**
|
|
2315
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2316
|
+
*/
|
|
2317
|
+
phase?: (string | null);
|
|
2318
|
+
/**
|
|
2319
|
+
* Race ID when phase is RACE
|
|
2320
|
+
*/
|
|
2321
|
+
race_id?: (string | null);
|
|
2306
2322
|
};
|
|
2307
2323
|
/**
|
|
2308
2324
|
* Problems for an evaluation run.
|
|
@@ -2976,6 +2992,10 @@ type GetAgentVersionProblemsData = {
|
|
|
2976
2992
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
2977
2993
|
*/
|
|
2978
2994
|
phase?: (string | null);
|
|
2995
|
+
/**
|
|
2996
|
+
* Filter to a specific race (implies phase=RACE)
|
|
2997
|
+
*/
|
|
2998
|
+
race_id?: (string | null);
|
|
2979
2999
|
};
|
|
2980
3000
|
};
|
|
2981
3001
|
type GetAgentVersionProblemsResponse = (AgentVersionProblemsResponse);
|
package/package.json
CHANGED
|
@@ -1785,6 +1785,14 @@ export type PendingEvaluation = {
|
|
|
1785
1785
|
* When this work item was created
|
|
1786
1786
|
*/
|
|
1787
1787
|
queued_at: string;
|
|
1788
|
+
/**
|
|
1789
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
1790
|
+
*/
|
|
1791
|
+
phase?: (string | null);
|
|
1792
|
+
/**
|
|
1793
|
+
* Race ID when phase is RACE
|
|
1794
|
+
*/
|
|
1795
|
+
race_id?: (string | null);
|
|
1788
1796
|
};
|
|
1789
1797
|
|
|
1790
1798
|
/**
|
|
@@ -2407,6 +2415,14 @@ export type RunningEvaluation = {
|
|
|
2407
2415
|
* Percentage of problems completed (0-100)
|
|
2408
2416
|
*/
|
|
2409
2417
|
progress_percent?: number;
|
|
2418
|
+
/**
|
|
2419
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2420
|
+
*/
|
|
2421
|
+
phase?: (string | null);
|
|
2422
|
+
/**
|
|
2423
|
+
* Race ID when phase is RACE
|
|
2424
|
+
*/
|
|
2425
|
+
race_id?: (string | null);
|
|
2410
2426
|
};
|
|
2411
2427
|
|
|
2412
2428
|
/**
|
|
@@ -3130,6 +3146,10 @@ export type GetAgentVersionProblemsData = {
|
|
|
3130
3146
|
* Filter by evaluation phase (QUALIFYING or RACE)
|
|
3131
3147
|
*/
|
|
3132
3148
|
phase?: (string | null);
|
|
3149
|
+
/**
|
|
3150
|
+
* Filter to a specific race (implies phase=RACE)
|
|
3151
|
+
*/
|
|
3152
|
+
race_id?: (string | null);
|
|
3133
3153
|
};
|
|
3134
3154
|
};
|
|
3135
3155
|
|