@oro-ai/sdk 1.0.105 → 1.0.107

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,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
@@ -1240,12 +1244,12 @@ type EvaluationExecutionRead = {
1240
1244
  status: string;
1241
1245
  completed_at: (string | null);
1242
1246
  score: (number | null);
1243
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1247
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1244
1248
  execution_contract_id?: (string | null);
1245
1249
  environment?: (SafeEnvironmentMetadata | null);
1246
1250
  detail_released?: boolean;
1247
1251
  };
1248
- type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1252
+ type execution_kind = 'legacy_shoppingbench' | 'envpack';
1249
1253
  type EvaluationItemRead = {
1250
1254
  item_id: string;
1251
1255
  item_kind: 'legacy_problem' | 'envpack_episode';
@@ -1259,11 +1263,12 @@ type EvaluationItemRead = {
1259
1263
  step_count?: (number | null);
1260
1264
  eval_run_id: string;
1261
1265
  validator_hotkey: string;
1266
+ episode_result_id?: (string | null);
1262
1267
  };
1263
1268
  type item_kind = 'legacy_problem' | 'envpack_episode';
1264
1269
  type EvaluationItemsRead = {
1265
1270
  eval_run_id: string;
1266
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1271
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1267
1272
  detail_released: boolean;
1268
1273
  expected_item_count?: (number | null);
1269
1274
  persisted_item_count: number;
@@ -1338,7 +1343,7 @@ type EvaluationRunDetail = {
1338
1343
  score_components_summary?: ({
1339
1344
  [key: string]: unknown;
1340
1345
  } | null);
1341
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1346
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1342
1347
  execution_contract_id?: (string | null);
1343
1348
  environment?: (SafeEnvironmentMetadata | null);
1344
1349
  items?: (EvaluationItemsRead | null);
@@ -2922,7 +2927,7 @@ type SuitePublic = {
2922
2927
  * Whether this suite is currently active
2923
2928
  */
2924
2929
  is_active: boolean;
2925
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2930
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
2926
2931
  environment?: (SafeEnvironmentMetadata | null);
2927
2932
  execution_contract_id?: (string | null);
2928
2933
  /**
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
@@ -1240,12 +1244,12 @@ type EvaluationExecutionRead = {
1240
1244
  status: string;
1241
1245
  completed_at: (string | null);
1242
1246
  score: (number | null);
1243
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1247
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1244
1248
  execution_contract_id?: (string | null);
1245
1249
  environment?: (SafeEnvironmentMetadata | null);
1246
1250
  detail_released?: boolean;
1247
1251
  };
1248
- type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1252
+ type execution_kind = 'legacy_shoppingbench' | 'envpack';
1249
1253
  type EvaluationItemRead = {
1250
1254
  item_id: string;
1251
1255
  item_kind: 'legacy_problem' | 'envpack_episode';
@@ -1259,11 +1263,12 @@ type EvaluationItemRead = {
1259
1263
  step_count?: (number | null);
1260
1264
  eval_run_id: string;
1261
1265
  validator_hotkey: string;
1266
+ episode_result_id?: (string | null);
1262
1267
  };
1263
1268
  type item_kind = 'legacy_problem' | 'envpack_episode';
1264
1269
  type EvaluationItemsRead = {
1265
1270
  eval_run_id: string;
1266
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1271
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1267
1272
  detail_released: boolean;
1268
1273
  expected_item_count?: (number | null);
1269
1274
  persisted_item_count: number;
@@ -1338,7 +1343,7 @@ type EvaluationRunDetail = {
1338
1343
  score_components_summary?: ({
1339
1344
  [key: string]: unknown;
1340
1345
  } | null);
1341
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1346
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1342
1347
  execution_contract_id?: (string | null);
1343
1348
  environment?: (SafeEnvironmentMetadata | null);
1344
1349
  items?: (EvaluationItemsRead | null);
@@ -2922,7 +2927,7 @@ type SuitePublic = {
2922
2927
  * Whether this suite is currently active
2923
2928
  */
2924
2929
  is_active: boolean;
2925
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2930
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
2926
2931
  environment?: (SafeEnvironmentMetadata | null);
2927
2932
  execution_contract_id?: (string | null);
2928
2933
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.105",
3
+ "version": "1.0.107",
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,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
  /**
@@ -1298,13 +1302,13 @@ export type EvaluationExecutionRead = {
1298
1302
  status: string;
1299
1303
  completed_at: (string | null);
1300
1304
  score: (number | null);
1301
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1305
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1302
1306
  execution_contract_id?: (string | null);
1303
1307
  environment?: (SafeEnvironmentMetadata | null);
1304
1308
  detail_released?: boolean;
1305
1309
  };
1306
1310
 
1307
- export type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1311
+ export type execution_kind = 'legacy_shoppingbench' | 'envpack';
1308
1312
 
1309
1313
  export type EvaluationItemRead = {
1310
1314
  item_id: string;
@@ -1319,13 +1323,14 @@ export type EvaluationItemRead = {
1319
1323
  step_count?: (number | null);
1320
1324
  eval_run_id: string;
1321
1325
  validator_hotkey: string;
1326
+ episode_result_id?: (string | null);
1322
1327
  };
1323
1328
 
1324
1329
  export type item_kind = 'legacy_problem' | 'envpack_episode';
1325
1330
 
1326
1331
  export type EvaluationItemsRead = {
1327
1332
  eval_run_id: string;
1328
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1333
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1329
1334
  detail_released: boolean;
1330
1335
  expected_item_count?: (number | null);
1331
1336
  persisted_item_count: number;
@@ -1402,7 +1407,7 @@ export type EvaluationRunDetail = {
1402
1407
  score_components_summary?: ({
1403
1408
  [key: string]: unknown;
1404
1409
  } | null);
1405
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1410
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1406
1411
  execution_contract_id?: (string | null);
1407
1412
  environment?: (SafeEnvironmentMetadata | null);
1408
1413
  items?: (EvaluationItemsRead | null);
@@ -3077,7 +3082,7 @@ export type SuitePublic = {
3077
3082
  * Whether this suite is currently active
3078
3083
  */
3079
3084
  is_active: boolean;
3080
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
3085
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
3081
3086
  environment?: (SafeEnvironmentMetadata | null);
3082
3087
  execution_contract_id?: (string | null);
3083
3088
  /**