@oro-ai/sdk 1.0.116 → 1.0.117
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 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +5 -1
package/dist/index.d.mts
CHANGED
|
@@ -776,6 +776,10 @@ 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);
|
|
779
783
|
};
|
|
780
784
|
type ArtifactDownloadResponse = {
|
|
781
785
|
/**
|
|
@@ -811,7 +815,7 @@ type ArtifactNotReleasedError = {
|
|
|
811
815
|
* Release state of agent version artifacts.
|
|
812
816
|
*/
|
|
813
817
|
type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
|
|
814
|
-
type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
|
|
818
|
+
type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
|
|
815
819
|
type AtCapacityError = {
|
|
816
820
|
/**
|
|
817
821
|
* Error message describing what went wrong
|
package/dist/index.d.ts
CHANGED
|
@@ -776,6 +776,10 @@ 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);
|
|
779
783
|
};
|
|
780
784
|
type ArtifactDownloadResponse = {
|
|
781
785
|
/**
|
|
@@ -811,7 +815,7 @@ type ArtifactNotReleasedError = {
|
|
|
811
815
|
* Release state of agent version artifacts.
|
|
812
816
|
*/
|
|
813
817
|
type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
|
|
814
|
-
type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
|
|
818
|
+
type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
|
|
815
819
|
type AtCapacityError = {
|
|
816
820
|
/**
|
|
817
821
|
* Error message describing what went wrong
|
package/package.json
CHANGED
|
@@ -800,6 +800,10 @@ 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);
|
|
803
807
|
};
|
|
804
808
|
|
|
805
809
|
export type ArtifactDownloadResponse = {
|
|
@@ -840,7 +844,7 @@ export type ArtifactNotReleasedError = {
|
|
|
840
844
|
*/
|
|
841
845
|
export type ArtifactReleaseState = 'HIDDEN' | 'RELEASED';
|
|
842
846
|
|
|
843
|
-
export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS';
|
|
847
|
+
export type ArtifactType = 'AGENT_CODE' | 'EVAL_LOGS_BUNDLE' | 'EVAL_PROBLEM_LOGS' | 'REASONING_DETAILS' | 'EPISODE_LEDGER';
|
|
844
848
|
|
|
845
849
|
export type AtCapacityError = {
|
|
846
850
|
/**
|