@oro-ai/sdk 1.0.90 → 1.0.91

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
  /**
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
  /**
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.91",
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 = {