@oro-ai/sdk 1.0.32 → 1.0.34
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 +24 -0
- package/dist/index.d.ts +24 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +24 -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.
|
|
@@ -2047,6 +2055,10 @@ type RaceQualifierEntry = {
|
|
|
2047
2055
|
* Miner hotkey
|
|
2048
2056
|
*/
|
|
2049
2057
|
miner_hotkey?: (string | null);
|
|
2058
|
+
/**
|
|
2059
|
+
* Version number within this agent
|
|
2060
|
+
*/
|
|
2061
|
+
version_number?: number;
|
|
2050
2062
|
/**
|
|
2051
2063
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2052
2064
|
*/
|
|
@@ -2076,6 +2088,10 @@ type RaceQualifierPublic = {
|
|
|
2076
2088
|
* Miner hotkey
|
|
2077
2089
|
*/
|
|
2078
2090
|
miner_hotkey?: (string | null);
|
|
2091
|
+
/**
|
|
2092
|
+
* Version number within this agent
|
|
2093
|
+
*/
|
|
2094
|
+
version_number?: number;
|
|
2079
2095
|
/**
|
|
2080
2096
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2081
2097
|
*/
|
|
@@ -2303,6 +2319,14 @@ type RunningEvaluation = {
|
|
|
2303
2319
|
* Percentage of problems completed (0-100)
|
|
2304
2320
|
*/
|
|
2305
2321
|
progress_percent?: number;
|
|
2322
|
+
/**
|
|
2323
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2324
|
+
*/
|
|
2325
|
+
phase?: (string | null);
|
|
2326
|
+
/**
|
|
2327
|
+
* Race ID when phase is RACE
|
|
2328
|
+
*/
|
|
2329
|
+
race_id?: (string | null);
|
|
2306
2330
|
};
|
|
2307
2331
|
/**
|
|
2308
2332
|
* 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.
|
|
@@ -2047,6 +2055,10 @@ type RaceQualifierEntry = {
|
|
|
2047
2055
|
* Miner hotkey
|
|
2048
2056
|
*/
|
|
2049
2057
|
miner_hotkey?: (string | null);
|
|
2058
|
+
/**
|
|
2059
|
+
* Version number within this agent
|
|
2060
|
+
*/
|
|
2061
|
+
version_number?: number;
|
|
2050
2062
|
/**
|
|
2051
2063
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2052
2064
|
*/
|
|
@@ -2076,6 +2088,10 @@ type RaceQualifierPublic = {
|
|
|
2076
2088
|
* Miner hotkey
|
|
2077
2089
|
*/
|
|
2078
2090
|
miner_hotkey?: (string | null);
|
|
2091
|
+
/**
|
|
2092
|
+
* Version number within this agent
|
|
2093
|
+
*/
|
|
2094
|
+
version_number?: number;
|
|
2079
2095
|
/**
|
|
2080
2096
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2081
2097
|
*/
|
|
@@ -2303,6 +2319,14 @@ type RunningEvaluation = {
|
|
|
2303
2319
|
* Percentage of problems completed (0-100)
|
|
2304
2320
|
*/
|
|
2305
2321
|
progress_percent?: number;
|
|
2322
|
+
/**
|
|
2323
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2324
|
+
*/
|
|
2325
|
+
phase?: (string | null);
|
|
2326
|
+
/**
|
|
2327
|
+
* Race ID when phase is RACE
|
|
2328
|
+
*/
|
|
2329
|
+
race_id?: (string | null);
|
|
2306
2330
|
};
|
|
2307
2331
|
/**
|
|
2308
2332
|
* 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
|
/**
|
|
@@ -2141,6 +2149,10 @@ export type RaceQualifierEntry = {
|
|
|
2141
2149
|
* Miner hotkey
|
|
2142
2150
|
*/
|
|
2143
2151
|
miner_hotkey?: (string | null);
|
|
2152
|
+
/**
|
|
2153
|
+
* Version number within this agent
|
|
2154
|
+
*/
|
|
2155
|
+
version_number?: number;
|
|
2144
2156
|
/**
|
|
2145
2157
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2146
2158
|
*/
|
|
@@ -2171,6 +2183,10 @@ export type RaceQualifierPublic = {
|
|
|
2171
2183
|
* Miner hotkey
|
|
2172
2184
|
*/
|
|
2173
2185
|
miner_hotkey?: (string | null);
|
|
2186
|
+
/**
|
|
2187
|
+
* Version number within this agent
|
|
2188
|
+
*/
|
|
2189
|
+
version_number?: number;
|
|
2174
2190
|
/**
|
|
2175
2191
|
* How agent qualified (INCUMBENT or SCORED)
|
|
2176
2192
|
*/
|
|
@@ -2407,6 +2423,14 @@ export type RunningEvaluation = {
|
|
|
2407
2423
|
* Percentage of problems completed (0-100)
|
|
2408
2424
|
*/
|
|
2409
2425
|
progress_percent?: number;
|
|
2426
|
+
/**
|
|
2427
|
+
* Evaluation phase (QUALIFYING or RACE)
|
|
2428
|
+
*/
|
|
2429
|
+
phase?: (string | null);
|
|
2430
|
+
/**
|
|
2431
|
+
* Race ID when phase is RACE
|
|
2432
|
+
*/
|
|
2433
|
+
race_id?: (string | null);
|
|
2410
2434
|
};
|
|
2411
2435
|
|
|
2412
2436
|
/**
|