@oro-ai/sdk 1.0.90 → 1.0.92

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
@@ -2291,6 +2291,10 @@ type RaceQualifierPublic = {
2291
2291
  * 3-race pooled ('weighted') score across the current window.
2292
2292
  */
2293
2293
  weighted_score?: (number | null);
2294
+ /**
2295
+ * Per-race build-up of the pooled window for this qualifier (seed entries flag races this version did not run; respects the launch floor).
2296
+ */
2297
+ window?: (Array<PooledWindowRace> | null);
2294
2298
  };
2295
2299
  type RaceSummary = {
2296
2300
  /**
@@ -2784,7 +2788,7 @@ type TopAgentResponse = {
2784
2788
  */
2785
2789
  top_score?: (number | null);
2786
2790
  /**
2787
- * Hysteresis/decay params
2791
+ * Challenge-threshold + burn-rate params
2788
2792
  */
2789
2793
  policy?: ({
2790
2794
  [key: string]: unknown;
@@ -2793,10 +2797,6 @@ type TopAgentResponse = {
2793
2797
  * Score required to dethrone
2794
2798
  */
2795
2799
  challenge_threshold?: (number | null);
2796
- /**
2797
- * Current emission weight (1.0=full)
2798
- */
2799
- emission_weight?: (number | null);
2800
2800
  /**
2801
2801
  * Current challenge margin fraction
2802
2802
  */
package/dist/index.d.ts CHANGED
@@ -2291,6 +2291,10 @@ type RaceQualifierPublic = {
2291
2291
  * 3-race pooled ('weighted') score across the current window.
2292
2292
  */
2293
2293
  weighted_score?: (number | null);
2294
+ /**
2295
+ * Per-race build-up of the pooled window for this qualifier (seed entries flag races this version did not run; respects the launch floor).
2296
+ */
2297
+ window?: (Array<PooledWindowRace> | null);
2294
2298
  };
2295
2299
  type RaceSummary = {
2296
2300
  /**
@@ -2784,7 +2788,7 @@ type TopAgentResponse = {
2784
2788
  */
2785
2789
  top_score?: (number | null);
2786
2790
  /**
2787
- * Hysteresis/decay params
2791
+ * Challenge-threshold + burn-rate params
2788
2792
  */
2789
2793
  policy?: ({
2790
2794
  [key: string]: unknown;
@@ -2793,10 +2797,6 @@ type TopAgentResponse = {
2793
2797
  * Score required to dethrone
2794
2798
  */
2795
2799
  challenge_threshold?: (number | null);
2796
- /**
2797
- * Current emission weight (1.0=full)
2798
- */
2799
- emission_weight?: (number | null);
2800
2800
  /**
2801
2801
  * Current challenge margin fraction
2802
2802
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2403,6 +2403,10 @@ export type RaceQualifierPublic = {
2403
2403
  * 3-race pooled ('weighted') score across the current window.
2404
2404
  */
2405
2405
  weighted_score?: (number | null);
2406
+ /**
2407
+ * Per-race build-up of the pooled window for this qualifier (seed entries flag races this version did not run; respects the launch floor).
2408
+ */
2409
+ window?: (Array<PooledWindowRace> | null);
2406
2410
  };
2407
2411
 
2408
2412
  export type RaceSummary = {
@@ -2927,7 +2931,7 @@ export type TopAgentResponse = {
2927
2931
  */
2928
2932
  top_score?: (number | null);
2929
2933
  /**
2930
- * Hysteresis/decay params
2934
+ * Challenge-threshold + burn-rate params
2931
2935
  */
2932
2936
  policy?: ({
2933
2937
  [key: string]: unknown;
@@ -2936,10 +2940,6 @@ export type TopAgentResponse = {
2936
2940
  * Score required to dethrone
2937
2941
  */
2938
2942
  challenge_threshold?: (number | null);
2939
- /**
2940
- * Current emission weight (1.0=full)
2941
- */
2942
- emission_weight?: (number | null);
2943
2943
  /**
2944
2944
  * Current challenge margin fraction
2945
2945
  */