@oro-ai/sdk 1.0.69 → 1.0.70

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 CHANGED
@@ -246,6 +246,10 @@ type AdminMinerEntry = {
246
246
  * When the miner registered on-chain
247
247
  */
248
248
  registered_at?: (string | null);
249
+ /**
250
+ * Remaining submission cooldown in seconds, or null if no cooldown is active. Sourced from Redis (`cooldown:miner:{hotkey}` TTL).
251
+ */
252
+ cooldown_remaining_seconds?: (number | null);
249
253
  };
250
254
  type AdminMinersResponse = {
251
255
  /**
package/dist/index.d.ts CHANGED
@@ -246,6 +246,10 @@ type AdminMinerEntry = {
246
246
  * When the miner registered on-chain
247
247
  */
248
248
  registered_at?: (string | null);
249
+ /**
250
+ * Remaining submission cooldown in seconds, or null if no cooldown is active. Sourced from Redis (`cooldown:miner:{hotkey}` TTL).
251
+ */
252
+ cooldown_remaining_seconds?: (number | null);
249
253
  };
250
254
  type AdminMinersResponse = {
251
255
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -251,6 +251,10 @@ export type AdminMinerEntry = {
251
251
  * When the miner registered on-chain
252
252
  */
253
253
  registered_at?: (string | null);
254
+ /**
255
+ * Remaining submission cooldown in seconds, or null if no cooldown is active. Sourced from Redis (`cooldown:miner:{hotkey}` TTL).
256
+ */
257
+ cooldown_remaining_seconds?: (number | null);
254
258
  };
255
259
 
256
260
  export type AdminMinersResponse = {