@oro-ai/sdk 1.0.68 → 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 +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -4
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
|
/**
|
|
@@ -937,10 +941,6 @@ type ClaimWorkResponse = {
|
|
|
937
941
|
* Presigned URL to download agent code
|
|
938
942
|
*/
|
|
939
943
|
code_download_url: string;
|
|
940
|
-
/**
|
|
941
|
-
* Mirrors ``inference_token.access_token`` when the minted provider is Chutes; null otherwise. Present for compatibility with older validators that haven't migrated to ``inference_token``.
|
|
942
|
-
*/
|
|
943
|
-
chutes_access_token?: (string | null);
|
|
944
944
|
/**
|
|
945
945
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
946
946
|
*/
|
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
|
/**
|
|
@@ -937,10 +941,6 @@ type ClaimWorkResponse = {
|
|
|
937
941
|
* Presigned URL to download agent code
|
|
938
942
|
*/
|
|
939
943
|
code_download_url: string;
|
|
940
|
-
/**
|
|
941
|
-
* Mirrors ``inference_token.access_token`` when the minted provider is Chutes; null otherwise. Present for compatibility with older validators that haven't migrated to ``inference_token``.
|
|
942
|
-
*/
|
|
943
|
-
chutes_access_token?: (string | null);
|
|
944
944
|
/**
|
|
945
945
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
946
946
|
*/
|
package/package.json
CHANGED
|
@@ -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 = {
|
|
@@ -978,10 +982,6 @@ export type ClaimWorkResponse = {
|
|
|
978
982
|
* Presigned URL to download agent code
|
|
979
983
|
*/
|
|
980
984
|
code_download_url: string;
|
|
981
|
-
/**
|
|
982
|
-
* Mirrors ``inference_token.access_token`` when the minted provider is Chutes; null otherwise. Present for compatibility with older validators that haven't migrated to ``inference_token``.
|
|
983
|
-
*/
|
|
984
|
-
chutes_access_token?: (string | null);
|
|
985
985
|
/**
|
|
986
986
|
* Per-run scoped inference credential. Null when the miner has no inference auth connected or minting failed.
|
|
987
987
|
*/
|