@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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +3 -3
- package/src/generated/types.gen.ts +1 -1
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
|
|
4844
|
+
* Activate a suite after evaluation work has drained.
|
|
4845
4845
|
*
|
|
4846
|
-
*
|
|
4847
|
-
*
|
|
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,
|
|
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
|
|
4844
|
+
* Activate a suite after evaluation work has drained.
|
|
4845
4845
|
*
|
|
4846
|
-
*
|
|
4847
|
-
*
|
|
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,
|
|
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
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -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
|
|
805
|
+
* Activate a suite after evaluation work has drained.
|
|
806
806
|
*
|
|
807
|
-
*
|
|
808
|
-
*
|
|
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?: {
|