@oro-ai/sdk 0.7.3 → 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
@@ -1136,6 +1136,10 @@ type PendingEvaluation = {
1136
1136
  * Unique work item identifier
1137
1137
  */
1138
1138
  work_item_id: string;
1139
+ /**
1140
+ * Agent version being evaluated
1141
+ */
1142
+ agent_version_id: string;
1139
1143
  /**
1140
1144
  * Name of the agent
1141
1145
  */
@@ -1789,6 +1793,10 @@ type ValidatorPublic = {
1789
1793
  * Validator's SS58 address
1790
1794
  */
1791
1795
  hotkey: string;
1796
+ /**
1797
+ * On-chain identity name, if set
1798
+ */
1799
+ name?: (string | null);
1792
1800
  /**
1793
1801
  * Current validator status
1794
1802
  */
@@ -1801,6 +1809,10 @@ type ValidatorPublic = {
1801
1809
  * Last work claim time
1802
1810
  */
1803
1811
  last_claim_at?: (string | null);
1812
+ /**
1813
+ * Last time validator was seen
1814
+ */
1815
+ last_seen_at?: (string | null);
1804
1816
  /**
1805
1817
  * Agent currently being evaluated, if any
1806
1818
  */
@@ -1811,6 +1823,14 @@ type ValidatorPublic = {
1811
1823
  service_versions?: ({
1812
1824
  [key: string]: (string);
1813
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);
1814
1834
  };
1815
1835
  /**
1816
1836
  * Status of a validator.
package/dist/index.d.ts CHANGED
@@ -1136,6 +1136,10 @@ type PendingEvaluation = {
1136
1136
  * Unique work item identifier
1137
1137
  */
1138
1138
  work_item_id: string;
1139
+ /**
1140
+ * Agent version being evaluated
1141
+ */
1142
+ agent_version_id: string;
1139
1143
  /**
1140
1144
  * Name of the agent
1141
1145
  */
@@ -1789,6 +1793,10 @@ type ValidatorPublic = {
1789
1793
  * Validator's SS58 address
1790
1794
  */
1791
1795
  hotkey: string;
1796
+ /**
1797
+ * On-chain identity name, if set
1798
+ */
1799
+ name?: (string | null);
1792
1800
  /**
1793
1801
  * Current validator status
1794
1802
  */
@@ -1801,6 +1809,10 @@ type ValidatorPublic = {
1801
1809
  * Last work claim time
1802
1810
  */
1803
1811
  last_claim_at?: (string | null);
1812
+ /**
1813
+ * Last time validator was seen
1814
+ */
1815
+ last_seen_at?: (string | null);
1804
1816
  /**
1805
1817
  * Agent currently being evaluated, if any
1806
1818
  */
@@ -1811,6 +1823,14 @@ type ValidatorPublic = {
1811
1823
  service_versions?: ({
1812
1824
  [key: string]: (string);
1813
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);
1814
1834
  };
1815
1835
  /**
1816
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.3",
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",
@@ -1197,6 +1197,10 @@ export type PendingEvaluation = {
1197
1197
  * Unique work item identifier
1198
1198
  */
1199
1199
  work_item_id: string;
1200
+ /**
1201
+ * Agent version being evaluated
1202
+ */
1203
+ agent_version_id: string;
1200
1204
  /**
1201
1205
  * Name of the agent
1202
1206
  */
@@ -1885,6 +1889,10 @@ export type ValidatorPublic = {
1885
1889
  * Validator's SS58 address
1886
1890
  */
1887
1891
  hotkey: string;
1892
+ /**
1893
+ * On-chain identity name, if set
1894
+ */
1895
+ name?: (string | null);
1888
1896
  /**
1889
1897
  * Current validator status
1890
1898
  */
@@ -1897,6 +1905,10 @@ export type ValidatorPublic = {
1897
1905
  * Last work claim time
1898
1906
  */
1899
1907
  last_claim_at?: (string | null);
1908
+ /**
1909
+ * Last time validator was seen
1910
+ */
1911
+ last_seen_at?: (string | null);
1900
1912
  /**
1901
1913
  * Agent currently being evaluated, if any
1902
1914
  */
@@ -1907,6 +1919,14 @@ export type ValidatorPublic = {
1907
1919
  service_versions?: ({
1908
1920
  [key: string]: (string);
1909
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);
1910
1930
  };
1911
1931
 
1912
1932
  /**