@oro-ai/sdk 1.0.16 → 1.0.18

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
@@ -734,7 +734,7 @@ type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
734
734
  /**
735
735
  * Type of artifact for download.
736
736
  */
737
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
737
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
738
738
  /**
739
739
  * 409 - Validator is at maximum concurrent evaluation capacity.
740
740
  */
@@ -2741,7 +2741,7 @@ type UpdateProgressData = {
2741
2741
  };
2742
2742
  };
2743
2743
  type UpdateProgressResponse = (ProgressUpdateResponse);
2744
- type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
2744
+ type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
2745
2745
  type PresignUploadData = {
2746
2746
  body: PresignUploadRequest;
2747
2747
  };
@@ -3261,7 +3261,7 @@ declare const claimWork: <ThrowOnError extends boolean = false>(options?: Option
3261
3261
  declare const heartbeat: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<HeartbeatData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<HeartbeatResponse, HeartbeatError, ThrowOnError>;
3262
3262
  /**
3263
3263
  * Update progress
3264
- * Report per-problem progress during evaluation. Accepts updates even after run completion so late-arriving scores and log keys are not lost.
3264
+ * Report per-problem progress during evaluation.
3265
3265
  */
3266
3266
  declare const updateProgress: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProgressUpdateResponse, UpdateProgressError, ThrowOnError>;
3267
3267
  /**
package/dist/index.d.ts CHANGED
@@ -734,7 +734,7 @@ type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
734
734
  /**
735
735
  * Type of artifact for download.
736
736
  */
737
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
737
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
738
738
  /**
739
739
  * 409 - Validator is at maximum concurrent evaluation capacity.
740
740
  */
@@ -2741,7 +2741,7 @@ type UpdateProgressData = {
2741
2741
  };
2742
2742
  };
2743
2743
  type UpdateProgressResponse = (ProgressUpdateResponse);
2744
- type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
2744
+ type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
2745
2745
  type PresignUploadData = {
2746
2746
  body: PresignUploadRequest;
2747
2747
  };
@@ -3261,7 +3261,7 @@ declare const claimWork: <ThrowOnError extends boolean = false>(options?: Option
3261
3261
  declare const heartbeat: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<HeartbeatData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<HeartbeatResponse, HeartbeatError, ThrowOnError>;
3262
3262
  /**
3263
3263
  * Update progress
3264
- * Report per-problem progress during evaluation. Accepts updates even after run completion so late-arriving scores and log keys are not lost.
3264
+ * Report per-problem progress during evaluation.
3265
3265
  */
3266
3266
  declare const updateProgress: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProgressUpdateResponse, UpdateProgressError, ThrowOnError>;
3267
3267
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -322,7 +322,7 @@ export const heartbeat = <ThrowOnError extends boolean = false>(options: Options
322
322
 
323
323
  /**
324
324
  * Update progress
325
- * Report per-problem progress during evaluation. Accepts updates even after run completion so late-arriving scores and log keys are not lost.
325
+ * Report per-problem progress during evaluation.
326
326
  */
327
327
  export const updateProgress = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => {
328
328
  return (options?.client ?? client).post<UpdateProgressResponse, UpdateProgressError, ThrowOnError>({
@@ -763,7 +763,7 @@ export type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
763
763
  /**
764
764
  * Type of artifact for download.
765
765
  */
766
- export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS';
766
+ export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
767
767
 
768
768
  /**
769
769
  * 409 - Validator is at maximum concurrent evaluation capacity.
@@ -2935,7 +2935,7 @@ export type UpdateProgressData = {
2935
2935
 
2936
2936
  export type UpdateProgressResponse = (ProgressUpdateResponse);
2937
2937
 
2938
- export type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
2938
+ export type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
2939
2939
 
2940
2940
  export type PresignUploadData = {
2941
2941
  body: PresignUploadRequest;