@oro-ai/sdk 1.0.93 → 1.0.94

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
@@ -1935,8 +1935,10 @@ type PendingEvaluationSummary = {
1935
1935
  /**
1936
1936
  * One race finisher in the epoch-pinned base standings (ORO-1704).
1937
1937
  *
1938
- * The minimal fields the validator's weight builder needs; it maps these to
1939
- * its own ``RankedFinisher`` exactly as it does for a live race-detail fetch.
1938
+ * Exactly the fields the validator maps to its ``RankedFinisher`` which the
1939
+ * weight builder re-sorts by ``race_score`` desc, tie-break ``agent_version_id``
1940
+ * asc. Both are required so the pinned vector is byte-identical to the live one;
1941
+ * the serve order is irrelevant (the validator re-sorts).
1940
1942
  */
1941
1943
  type PinnedFinisher = {
1942
1944
  /**
@@ -1944,13 +1946,13 @@ type PinnedFinisher = {
1944
1946
  */
1945
1947
  miner_hotkey: string;
1946
1948
  /**
1947
- * Finisher's race score (ranking key)
1949
+ * Finisher's agent version id (rank tie-break)
1948
1950
  */
1949
- race_score: number;
1951
+ agent_version_id: string;
1950
1952
  /**
1951
- * 1-based race rank
1953
+ * Finisher's race score (ranking key)
1952
1954
  */
1953
- rank: number;
1955
+ race_score: number;
1954
1956
  };
1955
1957
  type PooledWindowRace = {
1956
1958
  race_id: string;
package/dist/index.d.ts CHANGED
@@ -1935,8 +1935,10 @@ type PendingEvaluationSummary = {
1935
1935
  /**
1936
1936
  * One race finisher in the epoch-pinned base standings (ORO-1704).
1937
1937
  *
1938
- * The minimal fields the validator's weight builder needs; it maps these to
1939
- * its own ``RankedFinisher`` exactly as it does for a live race-detail fetch.
1938
+ * Exactly the fields the validator maps to its ``RankedFinisher`` which the
1939
+ * weight builder re-sorts by ``race_score`` desc, tie-break ``agent_version_id``
1940
+ * asc. Both are required so the pinned vector is byte-identical to the live one;
1941
+ * the serve order is irrelevant (the validator re-sorts).
1940
1942
  */
1941
1943
  type PinnedFinisher = {
1942
1944
  /**
@@ -1944,13 +1946,13 @@ type PinnedFinisher = {
1944
1946
  */
1945
1947
  miner_hotkey: string;
1946
1948
  /**
1947
- * Finisher's race score (ranking key)
1949
+ * Finisher's agent version id (rank tie-break)
1948
1950
  */
1949
- race_score: number;
1951
+ agent_version_id: string;
1950
1952
  /**
1951
- * 1-based race rank
1953
+ * Finisher's race score (ranking key)
1952
1954
  */
1953
- rank: number;
1955
+ race_score: number;
1954
1956
  };
1955
1957
  type PooledWindowRace = {
1956
1958
  race_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2029,8 +2029,10 @@ export type PendingEvaluationSummary = {
2029
2029
  /**
2030
2030
  * One race finisher in the epoch-pinned base standings (ORO-1704).
2031
2031
  *
2032
- * The minimal fields the validator's weight builder needs; it maps these to
2033
- * its own ``RankedFinisher`` exactly as it does for a live race-detail fetch.
2032
+ * Exactly the fields the validator maps to its ``RankedFinisher`` which the
2033
+ * weight builder re-sorts by ``race_score`` desc, tie-break ``agent_version_id``
2034
+ * asc. Both are required so the pinned vector is byte-identical to the live one;
2035
+ * the serve order is irrelevant (the validator re-sorts).
2034
2036
  */
2035
2037
  export type PinnedFinisher = {
2036
2038
  /**
@@ -2038,13 +2040,13 @@ export type PinnedFinisher = {
2038
2040
  */
2039
2041
  miner_hotkey: string;
2040
2042
  /**
2041
- * Finisher's race score (ranking key)
2043
+ * Finisher's agent version id (rank tie-break)
2042
2044
  */
2043
- race_score: number;
2045
+ agent_version_id: string;
2044
2046
  /**
2045
- * 1-based race rank
2047
+ * Finisher's race score (ranking key)
2046
2048
  */
2047
- rank: number;
2049
+ race_score: number;
2048
2050
  };
2049
2051
 
2050
2052
  export type PooledWindowRace = {