@oro-ai/sdk 0.7.5 → 0.7.7

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
@@ -1827,6 +1827,10 @@ type ValidatorPublic = {
1827
1827
  * On-chain identity URL
1828
1828
  */
1829
1829
  identity_url?: (string | null);
1830
+ /**
1831
+ * On-chain identity image URL
1832
+ */
1833
+ identity_image?: (string | null);
1830
1834
  /**
1831
1835
  * On-chain identity description
1832
1836
  */
@@ -2422,7 +2426,7 @@ declare const banMiner: <ThrowOnError extends boolean = false>(options: OptionsL
2422
2426
  declare const unbanMiner: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UnbanMinerData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BanResponse, UnbanMinerError, ThrowOnError>;
2423
2427
  /**
2424
2428
  * Ban a validator
2425
- * Ban a validator from claiming work.
2429
+ * Ban a validator from claiming work. Revokes any active Chutes tokens.
2426
2430
  */
2427
2431
  declare const banValidator: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<BanValidatorData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BanResponse, BanValidatorError, ThrowOnError>;
2428
2432
  /**
package/dist/index.d.ts CHANGED
@@ -1827,6 +1827,10 @@ type ValidatorPublic = {
1827
1827
  * On-chain identity URL
1828
1828
  */
1829
1829
  identity_url?: (string | null);
1830
+ /**
1831
+ * On-chain identity image URL
1832
+ */
1833
+ identity_image?: (string | null);
1830
1834
  /**
1831
1835
  * On-chain identity description
1832
1836
  */
@@ -2422,7 +2426,7 @@ declare const banMiner: <ThrowOnError extends boolean = false>(options: OptionsL
2422
2426
  declare const unbanMiner: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UnbanMinerData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BanResponse, UnbanMinerError, ThrowOnError>;
2423
2427
  /**
2424
2428
  * Ban a validator
2425
- * Ban a validator from claiming work.
2429
+ * Ban a validator from claiming work. Revokes any active Chutes tokens.
2426
2430
  */
2427
2431
  declare const banValidator: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<BanValidatorData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BanResponse, BanValidatorError, ThrowOnError>;
2428
2432
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -363,7 +363,7 @@ export const unbanMiner = <ThrowOnError extends boolean = false>(options: Option
363
363
 
364
364
  /**
365
365
  * Ban a validator
366
- * Ban a validator from claiming work.
366
+ * Ban a validator from claiming work. Revokes any active Chutes tokens.
367
367
  */
368
368
  export const banValidator = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<BanValidatorData, ThrowOnError>) => {
369
369
  return (options?.client ?? client).post<BanValidatorResponse, BanValidatorError, ThrowOnError>({
@@ -1923,6 +1923,10 @@ export type ValidatorPublic = {
1923
1923
  * On-chain identity URL
1924
1924
  */
1925
1925
  identity_url?: (string | null);
1926
+ /**
1927
+ * On-chain identity image URL
1928
+ */
1929
+ identity_image?: (string | null);
1926
1930
  /**
1927
1931
  * On-chain identity description
1928
1932
  */