@oro-ai/sdk 0.7.4 → 0.7.5

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
@@ -1793,6 +1793,10 @@ type ValidatorPublic = {
1793
1793
  * Validator's SS58 address
1794
1794
  */
1795
1795
  hotkey: string;
1796
+ /**
1797
+ * On-chain identity name, if set
1798
+ */
1799
+ name?: (string | null);
1796
1800
  /**
1797
1801
  * Current validator status
1798
1802
  */
@@ -1805,6 +1809,10 @@ type ValidatorPublic = {
1805
1809
  * Last work claim time
1806
1810
  */
1807
1811
  last_claim_at?: (string | null);
1812
+ /**
1813
+ * Last time validator was seen
1814
+ */
1815
+ last_seen_at?: (string | null);
1808
1816
  /**
1809
1817
  * Agent currently being evaluated, if any
1810
1818
  */
@@ -1815,6 +1823,14 @@ type ValidatorPublic = {
1815
1823
  service_versions?: ({
1816
1824
  [key: string]: (string);
1817
1825
  } | null);
1826
+ /**
1827
+ * On-chain identity URL
1828
+ */
1829
+ identity_url?: (string | null);
1830
+ /**
1831
+ * On-chain identity description
1832
+ */
1833
+ identity_description?: (string | null);
1818
1834
  };
1819
1835
  /**
1820
1836
  * Status of a validator.
package/dist/index.d.ts CHANGED
@@ -1793,6 +1793,10 @@ type ValidatorPublic = {
1793
1793
  * Validator's SS58 address
1794
1794
  */
1795
1795
  hotkey: string;
1796
+ /**
1797
+ * On-chain identity name, if set
1798
+ */
1799
+ name?: (string | null);
1796
1800
  /**
1797
1801
  * Current validator status
1798
1802
  */
@@ -1805,6 +1809,10 @@ type ValidatorPublic = {
1805
1809
  * Last work claim time
1806
1810
  */
1807
1811
  last_claim_at?: (string | null);
1812
+ /**
1813
+ * Last time validator was seen
1814
+ */
1815
+ last_seen_at?: (string | null);
1808
1816
  /**
1809
1817
  * Agent currently being evaluated, if any
1810
1818
  */
@@ -1815,6 +1823,14 @@ type ValidatorPublic = {
1815
1823
  service_versions?: ({
1816
1824
  [key: string]: (string);
1817
1825
  } | null);
1826
+ /**
1827
+ * On-chain identity URL
1828
+ */
1829
+ identity_url?: (string | null);
1830
+ /**
1831
+ * On-chain identity description
1832
+ */
1833
+ identity_description?: (string | null);
1818
1834
  };
1819
1835
  /**
1820
1836
  * Status of a validator.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1889,6 +1889,10 @@ export type ValidatorPublic = {
1889
1889
  * Validator's SS58 address
1890
1890
  */
1891
1891
  hotkey: string;
1892
+ /**
1893
+ * On-chain identity name, if set
1894
+ */
1895
+ name?: (string | null);
1892
1896
  /**
1893
1897
  * Current validator status
1894
1898
  */
@@ -1901,6 +1905,10 @@ export type ValidatorPublic = {
1901
1905
  * Last work claim time
1902
1906
  */
1903
1907
  last_claim_at?: (string | null);
1908
+ /**
1909
+ * Last time validator was seen
1910
+ */
1911
+ last_seen_at?: (string | null);
1904
1912
  /**
1905
1913
  * Agent currently being evaluated, if any
1906
1914
  */
@@ -1911,6 +1919,14 @@ export type ValidatorPublic = {
1911
1919
  service_versions?: ({
1912
1920
  [key: string]: (string);
1913
1921
  } | null);
1922
+ /**
1923
+ * On-chain identity URL
1924
+ */
1925
+ identity_url?: (string | null);
1926
+ /**
1927
+ * On-chain identity description
1928
+ */
1929
+ identity_description?: (string | null);
1914
1930
  };
1915
1931
 
1916
1932
  /**