@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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
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
|
@@ -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 = {
|