@oro-ai/sdk 1.0.106 → 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
@@ -1244,12 +1244,12 @@ type EvaluationExecutionRead = {
1244
1244
  status: string;
1245
1245
  completed_at: (string | null);
1246
1246
  score: (number | null);
1247
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1247
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1248
1248
  execution_contract_id?: (string | null);
1249
1249
  environment?: (SafeEnvironmentMetadata | null);
1250
1250
  detail_released?: boolean;
1251
1251
  };
1252
- type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1252
+ type execution_kind = 'legacy_shoppingbench' | 'envpack';
1253
1253
  type EvaluationItemRead = {
1254
1254
  item_id: string;
1255
1255
  item_kind: 'legacy_problem' | 'envpack_episode';
@@ -1268,7 +1268,7 @@ type EvaluationItemRead = {
1268
1268
  type item_kind = 'legacy_problem' | 'envpack_episode';
1269
1269
  type EvaluationItemsRead = {
1270
1270
  eval_run_id: string;
1271
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1271
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1272
1272
  detail_released: boolean;
1273
1273
  expected_item_count?: (number | null);
1274
1274
  persisted_item_count: number;
@@ -1343,7 +1343,7 @@ type EvaluationRunDetail = {
1343
1343
  score_components_summary?: ({
1344
1344
  [key: string]: unknown;
1345
1345
  } | null);
1346
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1346
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1347
1347
  execution_contract_id?: (string | null);
1348
1348
  environment?: (SafeEnvironmentMetadata | null);
1349
1349
  items?: (EvaluationItemsRead | null);
@@ -2927,7 +2927,7 @@ type SuitePublic = {
2927
2927
  * Whether this suite is currently active
2928
2928
  */
2929
2929
  is_active: boolean;
2930
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2930
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
2931
2931
  environment?: (SafeEnvironmentMetadata | null);
2932
2932
  execution_contract_id?: (string | null);
2933
2933
  /**
package/dist/index.d.ts CHANGED
@@ -1244,12 +1244,12 @@ type EvaluationExecutionRead = {
1244
1244
  status: string;
1245
1245
  completed_at: (string | null);
1246
1246
  score: (number | null);
1247
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1247
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1248
1248
  execution_contract_id?: (string | null);
1249
1249
  environment?: (SafeEnvironmentMetadata | null);
1250
1250
  detail_released?: boolean;
1251
1251
  };
1252
- type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1252
+ type execution_kind = 'legacy_shoppingbench' | 'envpack';
1253
1253
  type EvaluationItemRead = {
1254
1254
  item_id: string;
1255
1255
  item_kind: 'legacy_problem' | 'envpack_episode';
@@ -1268,7 +1268,7 @@ type EvaluationItemRead = {
1268
1268
  type item_kind = 'legacy_problem' | 'envpack_episode';
1269
1269
  type EvaluationItemsRead = {
1270
1270
  eval_run_id: string;
1271
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1271
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1272
1272
  detail_released: boolean;
1273
1273
  expected_item_count?: (number | null);
1274
1274
  persisted_item_count: number;
@@ -1343,7 +1343,7 @@ type EvaluationRunDetail = {
1343
1343
  score_components_summary?: ({
1344
1344
  [key: string]: unknown;
1345
1345
  } | null);
1346
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1346
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1347
1347
  execution_contract_id?: (string | null);
1348
1348
  environment?: (SafeEnvironmentMetadata | null);
1349
1349
  items?: (EvaluationItemsRead | null);
@@ -2927,7 +2927,7 @@ type SuitePublic = {
2927
2927
  * Whether this suite is currently active
2928
2928
  */
2929
2929
  is_active: boolean;
2930
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2930
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
2931
2931
  environment?: (SafeEnvironmentMetadata | null);
2932
2932
  execution_contract_id?: (string | null);
2933
2933
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.106",
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",
@@ -1302,13 +1302,13 @@ export type EvaluationExecutionRead = {
1302
1302
  status: string;
1303
1303
  completed_at: (string | null);
1304
1304
  score: (number | null);
1305
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1305
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1306
1306
  execution_contract_id?: (string | null);
1307
1307
  environment?: (SafeEnvironmentMetadata | null);
1308
1308
  detail_released?: boolean;
1309
1309
  };
1310
1310
 
1311
- export type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1311
+ export type execution_kind = 'legacy_shoppingbench' | 'envpack';
1312
1312
 
1313
1313
  export type EvaluationItemRead = {
1314
1314
  item_id: string;
@@ -1330,7 +1330,7 @@ export type item_kind = 'legacy_problem' | 'envpack_episode';
1330
1330
 
1331
1331
  export type EvaluationItemsRead = {
1332
1332
  eval_run_id: string;
1333
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1333
+ execution_kind: 'legacy_shoppingbench' | 'envpack';
1334
1334
  detail_released: boolean;
1335
1335
  expected_item_count?: (number | null);
1336
1336
  persisted_item_count: number;
@@ -1407,7 +1407,7 @@ export type EvaluationRunDetail = {
1407
1407
  score_components_summary?: ({
1408
1408
  [key: string]: unknown;
1409
1409
  } | null);
1410
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1410
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
1411
1411
  execution_contract_id?: (string | null);
1412
1412
  environment?: (SafeEnvironmentMetadata | null);
1413
1413
  items?: (EvaluationItemsRead | null);
@@ -3082,7 +3082,7 @@ export type SuitePublic = {
3082
3082
  * Whether this suite is currently active
3083
3083
  */
3084
3084
  is_active: boolean;
3085
- execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
3085
+ execution_kind?: 'legacy_shoppingbench' | 'envpack';
3086
3086
  environment?: (SafeEnvironmentMetadata | null);
3087
3087
  execution_contract_id?: (string | null);
3088
3088
  /**