@oro-ai/sdk 1.0.95 → 1.0.97

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
@@ -2243,6 +2243,10 @@ type RacePublic = {
2243
2243
  * Number of qualifiers in this race
2244
2244
  */
2245
2245
  qualifier_count?: number;
2246
+ /**
2247
+ * Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
2248
+ */
2249
+ scored_count?: (number | null);
2246
2250
  /**
2247
2251
  * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2248
2252
  */
@@ -3342,40 +3346,39 @@ type WaitlistSignupResponse = {
3342
3346
  success: boolean;
3343
3347
  };
3344
3348
  /**
3345
- * Per-epoch supplementary weight assignments for the weight setter.
3349
+ * Per-epoch base standings for the weight setter (ORO-1704).
3346
3350
  *
3347
- * ``weight_overlay`` maps miner uid (as a string) weight fraction that the
3348
- * validator should assign in addition to its base vector for this epoch,
3349
- * renormalizing the remainder. An **empty** overlay means apply nothing (the
3350
- * default). The validator treats this as opaque backend guidance.
3351
+ * ``epoch_standings`` is the epoch-pinned base vector input: the validator
3352
+ * builds its base vector from it so all honest validators in the epoch stay
3353
+ * byte-identical. **None** means it couldn't be resolved this tick (e.g. chain
3354
+ * unreadable); the validator retains its last-good weights.
3351
3355
  *
3352
- * ``epoch_standings`` (ORO-1704) is the epoch-pinned base vector input. When
3353
- * present, the validator builds its base vector from it instead of a live
3354
- * fetch, so all honest validators in the epoch stay byte-identical. **None**
3355
- * means the pin is disabled the validator falls back to its live standings
3356
- * fetch (today's behavior), the consensus-safe default.
3356
+ * ``active`` / ``eligible`` / ``weight_overlay`` are **deprecated** the
3357
+ * ORO-1649 watermark decoy-overlay was removed. They are retained (empty /
3358
+ * False) only for response-shape compatibility with older clients and will be
3359
+ * dropped in a coordinated SDK + validator release.
3357
3360
  */
3358
3361
  type WeightSaltResponse = {
3359
3362
  /**
3360
- * Whether supplementary weight assignments are in effect
3363
+ * Deprecated (watermark removed)
3361
3364
  */
3362
- active: boolean;
3365
+ active?: boolean;
3363
3366
  /**
3364
- * Whether this validator qualifies to receive assignments
3367
+ * Deprecated (watermark removed)
3365
3368
  */
3366
- eligible: boolean;
3369
+ eligible?: boolean;
3367
3370
  /**
3368
- * Epoch index the assignments are keyed to (stable within it)
3371
+ * Epoch index the standings are keyed to (stable within it)
3369
3372
  */
3370
3373
  epoch_index: number;
3371
3374
  /**
3372
- * uid (string) weight fraction to assign this epoch; empty means apply nothing
3375
+ * Deprecated (watermark removed); always empty
3373
3376
  */
3374
3377
  weight_overlay?: {
3375
3378
  [key: string]: (number);
3376
3379
  };
3377
3380
  /**
3378
- * Epoch-pinned base standings (ORO-1704); None means the pin is disabled and the validator uses its live standings fetch
3381
+ * Epoch-pinned base standings (ORO-1704); None if unresolved this tick
3379
3382
  */
3380
3383
  epoch_standings?: (EpochStandings | null);
3381
3384
  };
@@ -4541,13 +4544,12 @@ declare const completeRun: <ThrowOnError extends boolean = false>(options: Optio
4541
4544
  declare const getRunProblems: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetRunProblemsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RunProblemsResponse, GetRunProblemsError, ThrowOnError>;
4542
4545
  /**
4543
4546
  * Get Weight Salt
4544
- * Per-epoch supplementary weight assignments for the weight setter.
4545
- *
4546
- * Participation-gated: only validators that have done recent evaluation work
4547
- * receive assignments; others get an empty overlay and set their normal
4548
- * vector. The overlay is opaque guidance the validator applies as-is.
4547
+ * Per-epoch base standings for the weight setter (ORO-1704).
4549
4548
  *
4550
- * Returns an empty overlay unless the feature is enabled and configured.
4549
+ * Serves the epoch-pinned base standings (top designation + finisher tail)
4550
+ * snapshotted once per epoch, so every honest validator in the epoch builds the
4551
+ * identical base vector regardless of tick phase. (The ORO-1649 watermark
4552
+ * decoy-overlay was removed — we rely on the chain's anti-copy features.)
4551
4553
  */
4552
4554
  declare const getWeightSalt: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<WeightSaltResponse, unknown, ThrowOnError>;
4553
4555
  /**
package/dist/index.d.ts CHANGED
@@ -2243,6 +2243,10 @@ type RacePublic = {
2243
2243
  * Number of qualifiers in this race
2244
2244
  */
2245
2245
  qualifier_count?: number;
2246
+ /**
2247
+ * Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
2248
+ */
2249
+ scored_count?: (number | null);
2246
2250
  /**
2247
2251
  * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2248
2252
  */
@@ -3342,40 +3346,39 @@ type WaitlistSignupResponse = {
3342
3346
  success: boolean;
3343
3347
  };
3344
3348
  /**
3345
- * Per-epoch supplementary weight assignments for the weight setter.
3349
+ * Per-epoch base standings for the weight setter (ORO-1704).
3346
3350
  *
3347
- * ``weight_overlay`` maps miner uid (as a string) weight fraction that the
3348
- * validator should assign in addition to its base vector for this epoch,
3349
- * renormalizing the remainder. An **empty** overlay means apply nothing (the
3350
- * default). The validator treats this as opaque backend guidance.
3351
+ * ``epoch_standings`` is the epoch-pinned base vector input: the validator
3352
+ * builds its base vector from it so all honest validators in the epoch stay
3353
+ * byte-identical. **None** means it couldn't be resolved this tick (e.g. chain
3354
+ * unreadable); the validator retains its last-good weights.
3351
3355
  *
3352
- * ``epoch_standings`` (ORO-1704) is the epoch-pinned base vector input. When
3353
- * present, the validator builds its base vector from it instead of a live
3354
- * fetch, so all honest validators in the epoch stay byte-identical. **None**
3355
- * means the pin is disabled the validator falls back to its live standings
3356
- * fetch (today's behavior), the consensus-safe default.
3356
+ * ``active`` / ``eligible`` / ``weight_overlay`` are **deprecated** the
3357
+ * ORO-1649 watermark decoy-overlay was removed. They are retained (empty /
3358
+ * False) only for response-shape compatibility with older clients and will be
3359
+ * dropped in a coordinated SDK + validator release.
3357
3360
  */
3358
3361
  type WeightSaltResponse = {
3359
3362
  /**
3360
- * Whether supplementary weight assignments are in effect
3363
+ * Deprecated (watermark removed)
3361
3364
  */
3362
- active: boolean;
3365
+ active?: boolean;
3363
3366
  /**
3364
- * Whether this validator qualifies to receive assignments
3367
+ * Deprecated (watermark removed)
3365
3368
  */
3366
- eligible: boolean;
3369
+ eligible?: boolean;
3367
3370
  /**
3368
- * Epoch index the assignments are keyed to (stable within it)
3371
+ * Epoch index the standings are keyed to (stable within it)
3369
3372
  */
3370
3373
  epoch_index: number;
3371
3374
  /**
3372
- * uid (string) weight fraction to assign this epoch; empty means apply nothing
3375
+ * Deprecated (watermark removed); always empty
3373
3376
  */
3374
3377
  weight_overlay?: {
3375
3378
  [key: string]: (number);
3376
3379
  };
3377
3380
  /**
3378
- * Epoch-pinned base standings (ORO-1704); None means the pin is disabled and the validator uses its live standings fetch
3381
+ * Epoch-pinned base standings (ORO-1704); None if unresolved this tick
3379
3382
  */
3380
3383
  epoch_standings?: (EpochStandings | null);
3381
3384
  };
@@ -4541,13 +4544,12 @@ declare const completeRun: <ThrowOnError extends boolean = false>(options: Optio
4541
4544
  declare const getRunProblems: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetRunProblemsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RunProblemsResponse, GetRunProblemsError, ThrowOnError>;
4542
4545
  /**
4543
4546
  * Get Weight Salt
4544
- * Per-epoch supplementary weight assignments for the weight setter.
4545
- *
4546
- * Participation-gated: only validators that have done recent evaluation work
4547
- * receive assignments; others get an empty overlay and set their normal
4548
- * vector. The overlay is opaque guidance the validator applies as-is.
4547
+ * Per-epoch base standings for the weight setter (ORO-1704).
4549
4548
  *
4550
- * Returns an empty overlay unless the feature is enabled and configured.
4549
+ * Serves the epoch-pinned base standings (top designation + finisher tail)
4550
+ * snapshotted once per epoch, so every honest validator in the epoch builds the
4551
+ * identical base vector regardless of tick phase. (The ORO-1649 watermark
4552
+ * decoy-overlay was removed — we rely on the chain's anti-copy features.)
4551
4553
  */
4552
4554
  declare const getWeightSalt: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<WeightSaltResponse, unknown, ThrowOnError>;
4553
4555
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.95",
3
+ "version": "1.0.97",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -588,13 +588,12 @@ export const getRunProblems = <ThrowOnError extends boolean = false>(options: Op
588
588
 
589
589
  /**
590
590
  * Get Weight Salt
591
- * Per-epoch supplementary weight assignments for the weight setter.
591
+ * Per-epoch base standings for the weight setter (ORO-1704).
592
592
  *
593
- * Participation-gated: only validators that have done recent evaluation work
594
- * receive assignments; others get an empty overlay and set their normal
595
- * vector. The overlay is opaque guidance the validator applies as-is.
596
- *
597
- * Returns an empty overlay unless the feature is enabled and configured.
593
+ * Serves the epoch-pinned base standings (top designation + finisher tail)
594
+ * snapshotted once per epoch, so every honest validator in the epoch builds the
595
+ * identical base vector regardless of tick phase. (The ORO-1649 watermark
596
+ * decoy-overlay was removed — we rely on the chain's anti-copy features.)
598
597
  */
599
598
  export const getWeightSalt = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => {
600
599
  return (options?.client ?? client).get<GetWeightSaltResponse, GetWeightSaltError, ThrowOnError>({
@@ -2355,6 +2355,10 @@ export type RacePublic = {
2355
2355
  * Number of qualifiers in this race
2356
2356
  */
2357
2357
  qualifier_count?: number;
2358
+ /**
2359
+ * Number of qualifiers that have a completed race evaluation so far — an evaluation-progress signal (scored_count / qualifier_count). Unlike the per-agent scores (which are embargoed while a race runs, ORO-1811), this aggregate count reveals only how far along the race is, not who is winning, so it stays visible throughout. Null when not computed.
2360
+ */
2361
+ scored_count?: (number | null);
2358
2362
  /**
2359
2363
  * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2360
2364
  */
@@ -3511,40 +3515,39 @@ export type WaitlistSignupResponse = {
3511
3515
  };
3512
3516
 
3513
3517
  /**
3514
- * Per-epoch supplementary weight assignments for the weight setter.
3518
+ * Per-epoch base standings for the weight setter (ORO-1704).
3515
3519
  *
3516
- * ``weight_overlay`` maps miner uid (as a string) weight fraction that the
3517
- * validator should assign in addition to its base vector for this epoch,
3518
- * renormalizing the remainder. An **empty** overlay means apply nothing (the
3519
- * default). The validator treats this as opaque backend guidance.
3520
+ * ``epoch_standings`` is the epoch-pinned base vector input: the validator
3521
+ * builds its base vector from it so all honest validators in the epoch stay
3522
+ * byte-identical. **None** means it couldn't be resolved this tick (e.g. chain
3523
+ * unreadable); the validator retains its last-good weights.
3520
3524
  *
3521
- * ``epoch_standings`` (ORO-1704) is the epoch-pinned base vector input. When
3522
- * present, the validator builds its base vector from it instead of a live
3523
- * fetch, so all honest validators in the epoch stay byte-identical. **None**
3524
- * means the pin is disabled the validator falls back to its live standings
3525
- * fetch (today's behavior), the consensus-safe default.
3525
+ * ``active`` / ``eligible`` / ``weight_overlay`` are **deprecated** the
3526
+ * ORO-1649 watermark decoy-overlay was removed. They are retained (empty /
3527
+ * False) only for response-shape compatibility with older clients and will be
3528
+ * dropped in a coordinated SDK + validator release.
3526
3529
  */
3527
3530
  export type WeightSaltResponse = {
3528
3531
  /**
3529
- * Whether supplementary weight assignments are in effect
3532
+ * Deprecated (watermark removed)
3530
3533
  */
3531
- active: boolean;
3534
+ active?: boolean;
3532
3535
  /**
3533
- * Whether this validator qualifies to receive assignments
3536
+ * Deprecated (watermark removed)
3534
3537
  */
3535
- eligible: boolean;
3538
+ eligible?: boolean;
3536
3539
  /**
3537
- * Epoch index the assignments are keyed to (stable within it)
3540
+ * Epoch index the standings are keyed to (stable within it)
3538
3541
  */
3539
3542
  epoch_index: number;
3540
3543
  /**
3541
- * uid (string) weight fraction to assign this epoch; empty means apply nothing
3544
+ * Deprecated (watermark removed); always empty
3542
3545
  */
3543
3546
  weight_overlay?: {
3544
3547
  [key: string]: (number);
3545
3548
  };
3546
3549
  /**
3547
- * Epoch-pinned base standings (ORO-1704); None means the pin is disabled and the validator uses its live standings fetch
3550
+ * Epoch-pinned base standings (ORO-1704); None if unresolved this tick
3548
3551
  */
3549
3552
  epoch_standings?: (EpochStandings | null);
3550
3553
  };