@oro-ai/sdk 1.0.54 → 1.0.56
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -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
|
/**
|
|
@@ -1576,6 +1580,10 @@ type LeaderboardResponse = {
|
|
|
1576
1580
|
* Distinct miner hotkeys on leaderboard
|
|
1577
1581
|
*/
|
|
1578
1582
|
unique_miners: number;
|
|
1583
|
+
/**
|
|
1584
|
+
* Count of agent versions submitted in the last 24 hours (across all suites)
|
|
1585
|
+
*/
|
|
1586
|
+
agents_submitted_24h?: number;
|
|
1579
1587
|
/**
|
|
1580
1588
|
* Score required to dethrone current top
|
|
1581
1589
|
*/
|
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
|
/**
|
|
@@ -1576,6 +1580,10 @@ type LeaderboardResponse = {
|
|
|
1576
1580
|
* Distinct miner hotkeys on leaderboard
|
|
1577
1581
|
*/
|
|
1578
1582
|
unique_miners: number;
|
|
1583
|
+
/**
|
|
1584
|
+
* Count of agent versions submitted in the last 24 hours (across all suites)
|
|
1585
|
+
*/
|
|
1586
|
+
agents_submitted_24h?: number;
|
|
1579
1587
|
/**
|
|
1580
1588
|
* Score required to dethrone current top
|
|
1581
1589
|
*/
|
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 = {
|
|
@@ -1648,6 +1652,10 @@ export type LeaderboardResponse = {
|
|
|
1648
1652
|
* Distinct miner hotkeys on leaderboard
|
|
1649
1653
|
*/
|
|
1650
1654
|
unique_miners: number;
|
|
1655
|
+
/**
|
|
1656
|
+
* Count of agent versions submitted in the last 24 hours (across all suites)
|
|
1657
|
+
*/
|
|
1658
|
+
agents_submitted_24h?: number;
|
|
1651
1659
|
/**
|
|
1652
1660
|
* Score required to dethrone current top
|
|
1653
1661
|
*/
|