@oro-ai/sdk 1.0.32 → 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 +16 -0
- package/dist/index.d.ts +16 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +16 -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.
|
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.
|
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
|
/**
|