@oro-ai/sdk 1.0.106 → 1.0.108
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 +9 -13
- package/dist/index.d.ts +9 -13
- package/package.json +1 -1
- package/src/generated/types.gen.ts +9 -13
package/dist/index.d.mts
CHANGED
|
@@ -975,11 +975,7 @@ type ClaimWorkResponse = {
|
|
|
975
975
|
*/
|
|
976
976
|
code_download_url: string;
|
|
977
977
|
/**
|
|
978
|
-
*
|
|
979
|
-
*/
|
|
980
|
-
execution_contract_id?: (string | null);
|
|
981
|
-
/**
|
|
982
|
-
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
978
|
+
* Content-hash of the sealed environment pack this work item is frozen to (ORO-2062). Stamped at work-item creation, immutable after — validators load and run against this sha regardless of any suite/race pack rotation after the work item was created. Null for legacy work items with no binding (static-suite path).
|
|
983
979
|
*/
|
|
984
980
|
env_pack_sha256?: (string | null);
|
|
985
981
|
/**
|
|
@@ -1244,12 +1240,12 @@ type EvaluationExecutionRead = {
|
|
|
1244
1240
|
status: string;
|
|
1245
1241
|
completed_at: (string | null);
|
|
1246
1242
|
score: (number | null);
|
|
1247
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1248
|
-
|
|
1243
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1244
|
+
env_pack_sha256?: (string | null);
|
|
1249
1245
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1250
1246
|
detail_released?: boolean;
|
|
1251
1247
|
};
|
|
1252
|
-
type execution_kind = 'legacy_shoppingbench' | 'envpack'
|
|
1248
|
+
type execution_kind = 'legacy_shoppingbench' | 'envpack';
|
|
1253
1249
|
type EvaluationItemRead = {
|
|
1254
1250
|
item_id: string;
|
|
1255
1251
|
item_kind: 'legacy_problem' | 'envpack_episode';
|
|
@@ -1268,7 +1264,7 @@ type EvaluationItemRead = {
|
|
|
1268
1264
|
type item_kind = 'legacy_problem' | 'envpack_episode';
|
|
1269
1265
|
type EvaluationItemsRead = {
|
|
1270
1266
|
eval_run_id: string;
|
|
1271
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1267
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1272
1268
|
detail_released: boolean;
|
|
1273
1269
|
expected_item_count?: (number | null);
|
|
1274
1270
|
persisted_item_count: number;
|
|
@@ -1343,8 +1339,8 @@ type EvaluationRunDetail = {
|
|
|
1343
1339
|
score_components_summary?: ({
|
|
1344
1340
|
[key: string]: unknown;
|
|
1345
1341
|
} | null);
|
|
1346
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
1347
|
-
|
|
1342
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1343
|
+
env_pack_sha256?: (string | null);
|
|
1348
1344
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1349
1345
|
items?: (EvaluationItemsRead | null);
|
|
1350
1346
|
};
|
|
@@ -2927,9 +2923,9 @@ type SuitePublic = {
|
|
|
2927
2923
|
* Whether this suite is currently active
|
|
2928
2924
|
*/
|
|
2929
2925
|
is_active: boolean;
|
|
2930
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
2926
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
2931
2927
|
environment?: (SafeEnvironmentMetadata | null);
|
|
2932
|
-
|
|
2928
|
+
env_pack_sha256?: (string | null);
|
|
2933
2929
|
/**
|
|
2934
2930
|
* Envpack benchmark display name (from server config).
|
|
2935
2931
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -975,11 +975,7 @@ type ClaimWorkResponse = {
|
|
|
975
975
|
*/
|
|
976
976
|
code_download_url: string;
|
|
977
977
|
/**
|
|
978
|
-
*
|
|
979
|
-
*/
|
|
980
|
-
execution_contract_id?: (string | null);
|
|
981
|
-
/**
|
|
982
|
-
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
978
|
+
* Content-hash of the sealed environment pack this work item is frozen to (ORO-2062). Stamped at work-item creation, immutable after — validators load and run against this sha regardless of any suite/race pack rotation after the work item was created. Null for legacy work items with no binding (static-suite path).
|
|
983
979
|
*/
|
|
984
980
|
env_pack_sha256?: (string | null);
|
|
985
981
|
/**
|
|
@@ -1244,12 +1240,12 @@ type EvaluationExecutionRead = {
|
|
|
1244
1240
|
status: string;
|
|
1245
1241
|
completed_at: (string | null);
|
|
1246
1242
|
score: (number | null);
|
|
1247
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1248
|
-
|
|
1243
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1244
|
+
env_pack_sha256?: (string | null);
|
|
1249
1245
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1250
1246
|
detail_released?: boolean;
|
|
1251
1247
|
};
|
|
1252
|
-
type execution_kind = 'legacy_shoppingbench' | 'envpack'
|
|
1248
|
+
type execution_kind = 'legacy_shoppingbench' | 'envpack';
|
|
1253
1249
|
type EvaluationItemRead = {
|
|
1254
1250
|
item_id: string;
|
|
1255
1251
|
item_kind: 'legacy_problem' | 'envpack_episode';
|
|
@@ -1268,7 +1264,7 @@ type EvaluationItemRead = {
|
|
|
1268
1264
|
type item_kind = 'legacy_problem' | 'envpack_episode';
|
|
1269
1265
|
type EvaluationItemsRead = {
|
|
1270
1266
|
eval_run_id: string;
|
|
1271
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1267
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1272
1268
|
detail_released: boolean;
|
|
1273
1269
|
expected_item_count?: (number | null);
|
|
1274
1270
|
persisted_item_count: number;
|
|
@@ -1343,8 +1339,8 @@ type EvaluationRunDetail = {
|
|
|
1343
1339
|
score_components_summary?: ({
|
|
1344
1340
|
[key: string]: unknown;
|
|
1345
1341
|
} | null);
|
|
1346
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
1347
|
-
|
|
1342
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1343
|
+
env_pack_sha256?: (string | null);
|
|
1348
1344
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1349
1345
|
items?: (EvaluationItemsRead | null);
|
|
1350
1346
|
};
|
|
@@ -2927,9 +2923,9 @@ type SuitePublic = {
|
|
|
2927
2923
|
* Whether this suite is currently active
|
|
2928
2924
|
*/
|
|
2929
2925
|
is_active: boolean;
|
|
2930
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
2926
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
2931
2927
|
environment?: (SafeEnvironmentMetadata | null);
|
|
2932
|
-
|
|
2928
|
+
env_pack_sha256?: (string | null);
|
|
2933
2929
|
/**
|
|
2934
2930
|
* Envpack benchmark display name (from server config).
|
|
2935
2931
|
*/
|
package/package.json
CHANGED
|
@@ -1017,11 +1017,7 @@ export type ClaimWorkResponse = {
|
|
|
1017
1017
|
*/
|
|
1018
1018
|
code_download_url: string;
|
|
1019
1019
|
/**
|
|
1020
|
-
*
|
|
1021
|
-
*/
|
|
1022
|
-
execution_contract_id?: (string | null);
|
|
1023
|
-
/**
|
|
1024
|
-
* Content-hash of the sealed environment pack this work item is bound to (ORO-1928). Derived from the frozen execution_contract_id — validators load and run against this sha regardless of any contract activity after the work item was created. Null for legacy work items with no binding.
|
|
1020
|
+
* Content-hash of the sealed environment pack this work item is frozen to (ORO-2062). Stamped at work-item creation, immutable after — validators load and run against this sha regardless of any suite/race pack rotation after the work item was created. Null for legacy work items with no binding (static-suite path).
|
|
1025
1021
|
*/
|
|
1026
1022
|
env_pack_sha256?: (string | null);
|
|
1027
1023
|
/**
|
|
@@ -1302,13 +1298,13 @@ export type EvaluationExecutionRead = {
|
|
|
1302
1298
|
status: string;
|
|
1303
1299
|
completed_at: (string | null);
|
|
1304
1300
|
score: (number | null);
|
|
1305
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1306
|
-
|
|
1301
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1302
|
+
env_pack_sha256?: (string | null);
|
|
1307
1303
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1308
1304
|
detail_released?: boolean;
|
|
1309
1305
|
};
|
|
1310
1306
|
|
|
1311
|
-
export type execution_kind = 'legacy_shoppingbench' | 'envpack'
|
|
1307
|
+
export type execution_kind = 'legacy_shoppingbench' | 'envpack';
|
|
1312
1308
|
|
|
1313
1309
|
export type EvaluationItemRead = {
|
|
1314
1310
|
item_id: string;
|
|
@@ -1330,7 +1326,7 @@ export type item_kind = 'legacy_problem' | 'envpack_episode';
|
|
|
1330
1326
|
|
|
1331
1327
|
export type EvaluationItemsRead = {
|
|
1332
1328
|
eval_run_id: string;
|
|
1333
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack'
|
|
1329
|
+
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1334
1330
|
detail_released: boolean;
|
|
1335
1331
|
expected_item_count?: (number | null);
|
|
1336
1332
|
persisted_item_count: number;
|
|
@@ -1407,8 +1403,8 @@ export type EvaluationRunDetail = {
|
|
|
1407
1403
|
score_components_summary?: ({
|
|
1408
1404
|
[key: string]: unknown;
|
|
1409
1405
|
} | null);
|
|
1410
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
1411
|
-
|
|
1406
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1407
|
+
env_pack_sha256?: (string | null);
|
|
1412
1408
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1413
1409
|
items?: (EvaluationItemsRead | null);
|
|
1414
1410
|
};
|
|
@@ -3082,9 +3078,9 @@ export type SuitePublic = {
|
|
|
3082
3078
|
* Whether this suite is currently active
|
|
3083
3079
|
*/
|
|
3084
3080
|
is_active: boolean;
|
|
3085
|
-
execution_kind?: 'legacy_shoppingbench' | 'envpack'
|
|
3081
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
3086
3082
|
environment?: (SafeEnvironmentMetadata | null);
|
|
3087
|
-
|
|
3083
|
+
env_pack_sha256?: (string | null);
|
|
3088
3084
|
/**
|
|
3089
3085
|
* Envpack benchmark display name (from server config).
|
|
3090
3086
|
*/
|