@oro-ai/sdk 1.0.77 → 1.0.78
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 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1037,6 +1037,10 @@ type CompleteRunRequest = {
|
|
|
1037
1037
|
sandbox_metadata?: ({
|
|
1038
1038
|
[key: string]: unknown;
|
|
1039
1039
|
} | null);
|
|
1040
|
+
/**
|
|
1041
|
+
* Validator-computed agentic richness in [0.0, 1.0].
|
|
1042
|
+
*/
|
|
1043
|
+
agentic_richness?: (number | string | null);
|
|
1040
1044
|
};
|
|
1041
1045
|
type CompleteRunResponse = {
|
|
1042
1046
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1037,6 +1037,10 @@ type CompleteRunRequest = {
|
|
|
1037
1037
|
sandbox_metadata?: ({
|
|
1038
1038
|
[key: string]: unknown;
|
|
1039
1039
|
} | null);
|
|
1040
|
+
/**
|
|
1041
|
+
* Validator-computed agentic richness in [0.0, 1.0].
|
|
1042
|
+
*/
|
|
1043
|
+
agentic_richness?: (number | string | null);
|
|
1040
1044
|
};
|
|
1041
1045
|
type CompleteRunResponse = {
|
|
1042
1046
|
/**
|
package/package.json
CHANGED
|
@@ -1082,6 +1082,10 @@ export type CompleteRunRequest = {
|
|
|
1082
1082
|
sandbox_metadata?: ({
|
|
1083
1083
|
[key: string]: unknown;
|
|
1084
1084
|
} | null);
|
|
1085
|
+
/**
|
|
1086
|
+
* Validator-computed agentic richness in [0.0, 1.0].
|
|
1087
|
+
*/
|
|
1088
|
+
agentic_richness?: (number | string | null);
|
|
1085
1089
|
};
|
|
1086
1090
|
|
|
1087
1091
|
export type CompleteRunResponse = {
|