@oro-ai/sdk 1.0.107 → 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 +4 -8
- package/dist/index.d.ts +4 -8
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -8
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
|
/**
|
|
@@ -1245,7 +1241,7 @@ type EvaluationExecutionRead = {
|
|
|
1245
1241
|
completed_at: (string | null);
|
|
1246
1242
|
score: (number | null);
|
|
1247
1243
|
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1248
|
-
|
|
1244
|
+
env_pack_sha256?: (string | null);
|
|
1249
1245
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1250
1246
|
detail_released?: boolean;
|
|
1251
1247
|
};
|
|
@@ -1344,7 +1340,7 @@ type EvaluationRunDetail = {
|
|
|
1344
1340
|
[key: string]: unknown;
|
|
1345
1341
|
} | null);
|
|
1346
1342
|
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1347
|
-
|
|
1343
|
+
env_pack_sha256?: (string | null);
|
|
1348
1344
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1349
1345
|
items?: (EvaluationItemsRead | null);
|
|
1350
1346
|
};
|
|
@@ -2929,7 +2925,7 @@ type SuitePublic = {
|
|
|
2929
2925
|
is_active: boolean;
|
|
2930
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
|
/**
|
|
@@ -1245,7 +1241,7 @@ type EvaluationExecutionRead = {
|
|
|
1245
1241
|
completed_at: (string | null);
|
|
1246
1242
|
score: (number | null);
|
|
1247
1243
|
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1248
|
-
|
|
1244
|
+
env_pack_sha256?: (string | null);
|
|
1249
1245
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1250
1246
|
detail_released?: boolean;
|
|
1251
1247
|
};
|
|
@@ -1344,7 +1340,7 @@ type EvaluationRunDetail = {
|
|
|
1344
1340
|
[key: string]: unknown;
|
|
1345
1341
|
} | null);
|
|
1346
1342
|
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1347
|
-
|
|
1343
|
+
env_pack_sha256?: (string | null);
|
|
1348
1344
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1349
1345
|
items?: (EvaluationItemsRead | null);
|
|
1350
1346
|
};
|
|
@@ -2929,7 +2925,7 @@ type SuitePublic = {
|
|
|
2929
2925
|
is_active: boolean;
|
|
2930
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
|
/**
|
|
@@ -1303,7 +1299,7 @@ export type EvaluationExecutionRead = {
|
|
|
1303
1299
|
completed_at: (string | null);
|
|
1304
1300
|
score: (number | null);
|
|
1305
1301
|
execution_kind: 'legacy_shoppingbench' | 'envpack';
|
|
1306
|
-
|
|
1302
|
+
env_pack_sha256?: (string | null);
|
|
1307
1303
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1308
1304
|
detail_released?: boolean;
|
|
1309
1305
|
};
|
|
@@ -1408,7 +1404,7 @@ export type EvaluationRunDetail = {
|
|
|
1408
1404
|
[key: string]: unknown;
|
|
1409
1405
|
} | null);
|
|
1410
1406
|
execution_kind?: 'legacy_shoppingbench' | 'envpack';
|
|
1411
|
-
|
|
1407
|
+
env_pack_sha256?: (string | null);
|
|
1412
1408
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1413
1409
|
items?: (EvaluationItemsRead | null);
|
|
1414
1410
|
};
|
|
@@ -3084,7 +3080,7 @@ export type SuitePublic = {
|
|
|
3084
3080
|
is_active: boolean;
|
|
3085
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
|
*/
|