@oro-ai/sdk 1.0.5 → 1.0.6
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +12 -0
package/dist/index.d.mts
CHANGED
|
@@ -993,6 +993,18 @@ type EvaluationRunDetail = {
|
|
|
993
993
|
* Validator-reported failure reason
|
|
994
994
|
*/
|
|
995
995
|
failure_reason?: (string | null);
|
|
996
|
+
/**
|
|
997
|
+
* Whether run is included in aggregate scoring
|
|
998
|
+
*/
|
|
999
|
+
is_included?: boolean;
|
|
1000
|
+
/**
|
|
1001
|
+
* When run was invalidated
|
|
1002
|
+
*/
|
|
1003
|
+
invalidated_at?: (string | null);
|
|
1004
|
+
/**
|
|
1005
|
+
* Reason for invalidation
|
|
1006
|
+
*/
|
|
1007
|
+
invalidation_reason?: (string | null);
|
|
996
1008
|
};
|
|
997
1009
|
/**
|
|
998
1010
|
* Public representation of an evaluation run.
|
package/dist/index.d.ts
CHANGED
|
@@ -993,6 +993,18 @@ type EvaluationRunDetail = {
|
|
|
993
993
|
* Validator-reported failure reason
|
|
994
994
|
*/
|
|
995
995
|
failure_reason?: (string | null);
|
|
996
|
+
/**
|
|
997
|
+
* Whether run is included in aggregate scoring
|
|
998
|
+
*/
|
|
999
|
+
is_included?: boolean;
|
|
1000
|
+
/**
|
|
1001
|
+
* When run was invalidated
|
|
1002
|
+
*/
|
|
1003
|
+
invalidated_at?: (string | null);
|
|
1004
|
+
/**
|
|
1005
|
+
* Reason for invalidation
|
|
1006
|
+
*/
|
|
1007
|
+
invalidation_reason?: (string | null);
|
|
996
1008
|
};
|
|
997
1009
|
/**
|
|
998
1010
|
* Public representation of an evaluation run.
|
package/package.json
CHANGED
|
@@ -1040,6 +1040,18 @@ export type EvaluationRunDetail = {
|
|
|
1040
1040
|
* Validator-reported failure reason
|
|
1041
1041
|
*/
|
|
1042
1042
|
failure_reason?: (string | null);
|
|
1043
|
+
/**
|
|
1044
|
+
* Whether run is included in aggregate scoring
|
|
1045
|
+
*/
|
|
1046
|
+
is_included?: boolean;
|
|
1047
|
+
/**
|
|
1048
|
+
* When run was invalidated
|
|
1049
|
+
*/
|
|
1050
|
+
invalidated_at?: (string | null);
|
|
1051
|
+
/**
|
|
1052
|
+
* Reason for invalidation
|
|
1053
|
+
*/
|
|
1054
|
+
invalidation_reason?: (string | null);
|
|
1043
1055
|
};
|
|
1044
1056
|
|
|
1045
1057
|
/**
|