@oro-ai/sdk 1.0.50 → 1.0.51
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1590,6 +1590,10 @@ type MinerAgentsResponse = {
|
|
|
1590
1590
|
* The agent_version_id this miner would race with right now: the explicitly pinned version when valid, otherwise the picker's auto-pick (highest-scoring eligible version on this hotkey >= the qualifying threshold). None when nothing on this hotkey qualifies.
|
|
1591
1591
|
*/
|
|
1592
1592
|
racing_agent_version_id?: (string | null);
|
|
1593
|
+
/**
|
|
1594
|
+
* The agent_id that owns racing_agent_version_id. Surfaced alongside the version id so the dashboard can highlight the right row even when the racing version isn't that agent's latest. None when racing_agent_version_id is None.
|
|
1595
|
+
*/
|
|
1596
|
+
racing_agent_id?: (string | null);
|
|
1593
1597
|
};
|
|
1594
1598
|
type MinerNotFoundError = {
|
|
1595
1599
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1590,6 +1590,10 @@ type MinerAgentsResponse = {
|
|
|
1590
1590
|
* The agent_version_id this miner would race with right now: the explicitly pinned version when valid, otherwise the picker's auto-pick (highest-scoring eligible version on this hotkey >= the qualifying threshold). None when nothing on this hotkey qualifies.
|
|
1591
1591
|
*/
|
|
1592
1592
|
racing_agent_version_id?: (string | null);
|
|
1593
|
+
/**
|
|
1594
|
+
* The agent_id that owns racing_agent_version_id. Surfaced alongside the version id so the dashboard can highlight the right row even when the racing version isn't that agent's latest. None when racing_agent_version_id is None.
|
|
1595
|
+
*/
|
|
1596
|
+
racing_agent_id?: (string | null);
|
|
1593
1597
|
};
|
|
1594
1598
|
type MinerNotFoundError = {
|
|
1595
1599
|
/**
|
package/package.json
CHANGED
|
@@ -1663,6 +1663,10 @@ export type MinerAgentsResponse = {
|
|
|
1663
1663
|
* The agent_version_id this miner would race with right now: the explicitly pinned version when valid, otherwise the picker's auto-pick (highest-scoring eligible version on this hotkey >= the qualifying threshold). None when nothing on this hotkey qualifies.
|
|
1664
1664
|
*/
|
|
1665
1665
|
racing_agent_version_id?: (string | null);
|
|
1666
|
+
/**
|
|
1667
|
+
* The agent_id that owns racing_agent_version_id. Surfaced alongside the version id so the dashboard can highlight the right row even when the racing version isn't that agent's latest. None when racing_agent_version_id is None.
|
|
1668
|
+
*/
|
|
1669
|
+
racing_agent_id?: (string | null);
|
|
1666
1670
|
};
|
|
1667
1671
|
|
|
1668
1672
|
export type MinerNotFoundError = {
|