@oro-ai/sdk 1.0.88 → 1.0.89
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 +5 -7
- package/dist/index.d.ts +5 -7
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +5 -7
package/dist/index.d.mts
CHANGED
|
@@ -4429,15 +4429,13 @@ declare const completeRun: <ThrowOnError extends boolean = false>(options: Optio
|
|
|
4429
4429
|
declare const getRunProblems: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetRunProblemsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RunProblemsResponse, GetRunProblemsError, ThrowOnError>;
|
|
4430
4430
|
/**
|
|
4431
4431
|
* Get Weight Salt
|
|
4432
|
-
* Per-epoch
|
|
4432
|
+
* Per-epoch supplementary weight assignments for the weight setter.
|
|
4433
4433
|
*
|
|
4434
|
-
* Participation-gated: only
|
|
4435
|
-
*
|
|
4436
|
-
*
|
|
4437
|
-
* omits the watermark → it diverges from consensus → loses vtrust.
|
|
4434
|
+
* Participation-gated: only validators that have done recent evaluation work
|
|
4435
|
+
* receive assignments; others get an empty overlay and set their normal
|
|
4436
|
+
* vector. The overlay is opaque guidance the validator applies as-is.
|
|
4438
4437
|
*
|
|
4439
|
-
*
|
|
4440
|
-
* ``watermark_active`` is set AND a decoy pool + secret key are configured.
|
|
4438
|
+
* Returns an empty overlay unless the feature is enabled and configured.
|
|
4441
4439
|
*/
|
|
4442
4440
|
declare const getWeightSalt: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<WeightSaltResponse, unknown, ThrowOnError>;
|
|
4443
4441
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -4429,15 +4429,13 @@ declare const completeRun: <ThrowOnError extends boolean = false>(options: Optio
|
|
|
4429
4429
|
declare const getRunProblems: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetRunProblemsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RunProblemsResponse, GetRunProblemsError, ThrowOnError>;
|
|
4430
4430
|
/**
|
|
4431
4431
|
* Get Weight Salt
|
|
4432
|
-
* Per-epoch
|
|
4432
|
+
* Per-epoch supplementary weight assignments for the weight setter.
|
|
4433
4433
|
*
|
|
4434
|
-
* Participation-gated: only
|
|
4435
|
-
*
|
|
4436
|
-
*
|
|
4437
|
-
* omits the watermark → it diverges from consensus → loses vtrust.
|
|
4434
|
+
* Participation-gated: only validators that have done recent evaluation work
|
|
4435
|
+
* receive assignments; others get an empty overlay and set their normal
|
|
4436
|
+
* vector. The overlay is opaque guidance the validator applies as-is.
|
|
4438
4437
|
*
|
|
4439
|
-
*
|
|
4440
|
-
* ``watermark_active`` is set AND a decoy pool + secret key are configured.
|
|
4438
|
+
* Returns an empty overlay unless the feature is enabled and configured.
|
|
4441
4439
|
*/
|
|
4442
4440
|
declare const getWeightSalt: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<WeightSaltResponse, unknown, ThrowOnError>;
|
|
4443
4441
|
/**
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -588,15 +588,13 @@ export const getRunProblems = <ThrowOnError extends boolean = false>(options: Op
|
|
|
588
588
|
|
|
589
589
|
/**
|
|
590
590
|
* Get Weight Salt
|
|
591
|
-
* Per-epoch
|
|
591
|
+
* Per-epoch supplementary weight assignments for the weight setter.
|
|
592
592
|
*
|
|
593
|
-
* Participation-gated: only
|
|
594
|
-
*
|
|
595
|
-
*
|
|
596
|
-
* omits the watermark → it diverges from consensus → loses vtrust.
|
|
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.
|
|
597
596
|
*
|
|
598
|
-
*
|
|
599
|
-
* ``watermark_active`` is set AND a decoy pool + secret key are configured.
|
|
597
|
+
* Returns an empty overlay unless the feature is enabled and configured.
|
|
600
598
|
*/
|
|
601
599
|
export const getWeightSalt = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => {
|
|
602
600
|
return (options?.client ?? client).get<GetWeightSaltResponse, GetWeightSaltError, ThrowOnError>({
|