@oro-ai/sdk 1.0.108 → 1.0.109

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
@@ -4085,7 +4085,7 @@ type ActivateSuiteData = {
4085
4085
  };
4086
4086
  };
4087
4087
  type ActivateSuiteResponse2 = (ActivateSuiteResponse);
4088
- type ActivateSuiteError = (SuiteNotFoundError | HTTPValidationError);
4088
+ type ActivateSuiteError = (SuiteNotFoundError | unknown | HTTPValidationError);
4089
4089
  type GetAuditEventsData = {
4090
4090
  query?: {
4091
4091
  /**
@@ -4841,12 +4841,12 @@ declare const cancelAgentVersion: <ThrowOnError extends boolean = false>(options
4841
4841
  declare const createSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<CreateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateSuiteResponse, HTTPValidationError, ThrowOnError>;
4842
4842
  /**
4843
4843
  * Activate a problem suite
4844
- * Activate a suite, making it the current active suite (deactivates others).
4844
+ * Activate a suite after evaluation work has drained.
4845
4845
  *
4846
- * Automatically requeues the top N agent versions from the previous suite
4847
- * so validators have work immediately and the leaderboard populates quickly.
4846
+ * The orchestrator lock makes the suite swap atomic with cancellation of stale
4847
+ * inactive-suite race shells. Historical work and results are never rewritten.
4848
4848
  */
4849
- declare const activateSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ActivateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ActivateSuiteResponse, ActivateSuiteError, ThrowOnError>;
4849
+ declare const activateSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ActivateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ActivateSuiteResponse, unknown, ThrowOnError>;
4850
4850
  /**
4851
4851
  * Get audit events
4852
4852
  * Retrieve audit events with optional filtering and pagination.
package/dist/index.d.ts CHANGED
@@ -4085,7 +4085,7 @@ type ActivateSuiteData = {
4085
4085
  };
4086
4086
  };
4087
4087
  type ActivateSuiteResponse2 = (ActivateSuiteResponse);
4088
- type ActivateSuiteError = (SuiteNotFoundError | HTTPValidationError);
4088
+ type ActivateSuiteError = (SuiteNotFoundError | unknown | HTTPValidationError);
4089
4089
  type GetAuditEventsData = {
4090
4090
  query?: {
4091
4091
  /**
@@ -4841,12 +4841,12 @@ declare const cancelAgentVersion: <ThrowOnError extends boolean = false>(options
4841
4841
  declare const createSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<CreateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateSuiteResponse, HTTPValidationError, ThrowOnError>;
4842
4842
  /**
4843
4843
  * Activate a problem suite
4844
- * Activate a suite, making it the current active suite (deactivates others).
4844
+ * Activate a suite after evaluation work has drained.
4845
4845
  *
4846
- * Automatically requeues the top N agent versions from the previous suite
4847
- * so validators have work immediately and the leaderboard populates quickly.
4846
+ * The orchestrator lock makes the suite swap atomic with cancellation of stale
4847
+ * inactive-suite race shells. Historical work and results are never rewritten.
4848
4848
  */
4849
- declare const activateSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ActivateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ActivateSuiteResponse, ActivateSuiteError, ThrowOnError>;
4849
+ declare const activateSuite: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ActivateSuiteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ActivateSuiteResponse, unknown, ThrowOnError>;
4850
4850
  /**
4851
4851
  * Get audit events
4852
4852
  * Retrieve audit events with optional filtering and pagination.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.108",
3
+ "version": "1.0.109",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -802,10 +802,10 @@ export const createSuite = <ThrowOnError extends boolean = false>(options: Optio
802
802
 
803
803
  /**
804
804
  * Activate a problem suite
805
- * Activate a suite, making it the current active suite (deactivates others).
805
+ * Activate a suite after evaluation work has drained.
806
806
  *
807
- * Automatically requeues the top N agent versions from the previous suite
808
- * so validators have work immediately and the leaderboard populates quickly.
807
+ * The orchestrator lock makes the suite swap atomic with cancellation of stale
808
+ * inactive-suite race shells. Historical work and results are never rewritten.
809
809
  */
810
810
  export const activateSuite = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ActivateSuiteData, ThrowOnError>) => {
811
811
  return (options?.client ?? client).post<ActivateSuiteResponse2, ActivateSuiteError, ThrowOnError>({
@@ -4447,7 +4447,7 @@ export type ActivateSuiteData = {
4447
4447
 
4448
4448
  export type ActivateSuiteResponse2 = (ActivateSuiteResponse);
4449
4449
 
4450
- export type ActivateSuiteError = (SuiteNotFoundError | HTTPValidationError);
4450
+ export type ActivateSuiteError = (SuiteNotFoundError | unknown | HTTPValidationError);
4451
4451
 
4452
4452
  export type GetAuditEventsData = {
4453
4453
  query?: {