@oro-ai/sdk 1.0.115 → 1.0.116

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
@@ -776,10 +776,6 @@ type ArtifactDownloadRequest = {
776
776
  * Problem ID for per-problem artifact downloads
777
777
  */
778
778
  problem_id?: (string | null);
779
- /**
780
- * Episode result ID for per-episode envpack ledger downloads
781
- */
782
- episode_result_id?: (string | null);
783
779
  };
784
780
  type ArtifactDownloadResponse = {
785
781
  /**
@@ -815,7 +811,7 @@ type ArtifactNotReleasedError = {
815
811
  * Release state of agent version artifacts.
816
812
  */
817
813
  type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
818
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
814
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
819
815
  type AtCapacityError = {
820
816
  /**
821
817
  * Error message describing what went wrong
package/dist/index.d.ts CHANGED
@@ -776,10 +776,6 @@ type ArtifactDownloadRequest = {
776
776
  * Problem ID for per-problem artifact downloads
777
777
  */
778
778
  problem_id?: (string | null);
779
- /**
780
- * Episode result ID for per-episode envpack ledger downloads
781
- */
782
- episode_result_id?: (string | null);
783
779
  };
784
780
  type ArtifactDownloadResponse = {
785
781
  /**
@@ -815,7 +811,7 @@ type ArtifactNotReleasedError = {
815
811
  * Release state of agent version artifacts.
816
812
  */
817
813
  type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
818
- type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
814
+ type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
819
815
  type AtCapacityError = {
820
816
  /**
821
817
  * Error message describing what went wrong
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.115",
3
+ "version": "1.0.116",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -800,10 +800,6 @@ export type ArtifactDownloadRequest = {
800
800
  * Problem ID for per-problem artifact downloads
801
801
  */
802
802
  problem_id?: (string | null);
803
- /**
804
- * Episode result ID for per-episode envpack ledger downloads
805
- */
806
- episode_result_id?: (string | null);
807
803
  };
808
804
 
809
805
  export type ArtifactDownloadResponse = {
@@ -844,7 +840,7 @@ export type ArtifactNotReleasedError = {
844
840
  */
845
841
  export type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
846
842
 
847
- export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
843
+ export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
848
844
 
849
845
  export type AtCapacityError = {
850
846
  /**