@oro-ai/sdk 1.0.55 → 1.0.57
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
|
@@ -1550,6 +1550,10 @@ type LeaderboardEntry = {
|
|
|
1550
1550
|
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1551
1551
|
*/
|
|
1552
1552
|
outranked_by_agent_version_id?: (string | null);
|
|
1553
|
+
/**
|
|
1554
|
+
* UTC timestamp when this agent was eliminated from future races.
|
|
1555
|
+
*/
|
|
1556
|
+
eliminated_at?: (string | null);
|
|
1553
1557
|
};
|
|
1554
1558
|
type LeaderboardResponse = {
|
|
1555
1559
|
/**
|
|
@@ -2089,6 +2093,10 @@ type RaceQualifierEntry = {
|
|
|
2089
2093
|
* Score from race phase
|
|
2090
2094
|
*/
|
|
2091
2095
|
race_score?: (number | null);
|
|
2096
|
+
/**
|
|
2097
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2098
|
+
*/
|
|
2099
|
+
eliminated_at?: (string | null);
|
|
2092
2100
|
};
|
|
2093
2101
|
type RaceQualifierPublic = {
|
|
2094
2102
|
/**
|
|
@@ -2119,6 +2127,10 @@ type RaceQualifierPublic = {
|
|
|
2119
2127
|
* Score from race phase
|
|
2120
2128
|
*/
|
|
2121
2129
|
race_score?: (number | null);
|
|
2130
|
+
/**
|
|
2131
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2132
|
+
*/
|
|
2133
|
+
eliminated_at?: (string | null);
|
|
2122
2134
|
/**
|
|
2123
2135
|
* Rank within the race
|
|
2124
2136
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1550,6 +1550,10 @@ type LeaderboardEntry = {
|
|
|
1550
1550
|
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1551
1551
|
*/
|
|
1552
1552
|
outranked_by_agent_version_id?: (string | null);
|
|
1553
|
+
/**
|
|
1554
|
+
* UTC timestamp when this agent was eliminated from future races.
|
|
1555
|
+
*/
|
|
1556
|
+
eliminated_at?: (string | null);
|
|
1553
1557
|
};
|
|
1554
1558
|
type LeaderboardResponse = {
|
|
1555
1559
|
/**
|
|
@@ -2089,6 +2093,10 @@ type RaceQualifierEntry = {
|
|
|
2089
2093
|
* Score from race phase
|
|
2090
2094
|
*/
|
|
2091
2095
|
race_score?: (number | null);
|
|
2096
|
+
/**
|
|
2097
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2098
|
+
*/
|
|
2099
|
+
eliminated_at?: (string | null);
|
|
2092
2100
|
};
|
|
2093
2101
|
type RaceQualifierPublic = {
|
|
2094
2102
|
/**
|
|
@@ -2119,6 +2127,10 @@ type RaceQualifierPublic = {
|
|
|
2119
2127
|
* Score from race phase
|
|
2120
2128
|
*/
|
|
2121
2129
|
race_score?: (number | null);
|
|
2130
|
+
/**
|
|
2131
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2132
|
+
*/
|
|
2133
|
+
eliminated_at?: (string | null);
|
|
2122
2134
|
/**
|
|
2123
2135
|
* Rank within the race
|
|
2124
2136
|
*/
|
package/package.json
CHANGED
|
@@ -1621,6 +1621,10 @@ export type LeaderboardEntry = {
|
|
|
1621
1621
|
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1622
1622
|
*/
|
|
1623
1623
|
outranked_by_agent_version_id?: (string | null);
|
|
1624
|
+
/**
|
|
1625
|
+
* UTC timestamp when this agent was eliminated from future races.
|
|
1626
|
+
*/
|
|
1627
|
+
eliminated_at?: (string | null);
|
|
1624
1628
|
};
|
|
1625
1629
|
|
|
1626
1630
|
export type LeaderboardResponse = {
|
|
@@ -2192,6 +2196,10 @@ export type RaceQualifierEntry = {
|
|
|
2192
2196
|
* Score from race phase
|
|
2193
2197
|
*/
|
|
2194
2198
|
race_score?: (number | null);
|
|
2199
|
+
/**
|
|
2200
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2201
|
+
*/
|
|
2202
|
+
eliminated_at?: (string | null);
|
|
2195
2203
|
};
|
|
2196
2204
|
|
|
2197
2205
|
export type RaceQualifierPublic = {
|
|
@@ -2223,6 +2231,10 @@ export type RaceQualifierPublic = {
|
|
|
2223
2231
|
* Score from race phase
|
|
2224
2232
|
*/
|
|
2225
2233
|
race_score?: (number | null);
|
|
2234
|
+
/**
|
|
2235
|
+
* UTC timestamp when this agent was eliminated from future races, if any. Sourced from the agent version aggregate, not the qualifier row.
|
|
2236
|
+
*/
|
|
2237
|
+
eliminated_at?: (string | null);
|
|
2226
2238
|
/**
|
|
2227
2239
|
* Rank within the race
|
|
2228
2240
|
*/
|