@wix/evalforge-types 0.80.0 → 0.81.0
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/build/index.js +3 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +3 -1
- package/build/index.mjs.map +2 -2
- package/build/types/evaluation/eval-run.d.ts +2 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -1905,7 +1905,9 @@ var EvalRunSchema = TenantEntitySchema.extend({
|
|
|
1905
1905
|
/** LLM-generated analysis of the completed run */
|
|
1906
1906
|
runAnalysis: RunAnalysisSchema.optional(),
|
|
1907
1907
|
/** IDs of folders this run belongs to (read-only, managed via AddRunToFolder / RemoveRunFromFolder) */
|
|
1908
|
-
folderIds: import_zod30.z.array(import_zod30.z.string()).optional()
|
|
1908
|
+
folderIds: import_zod30.z.array(import_zod30.z.string()).optional(),
|
|
1909
|
+
/** ID of the schedule that triggered this run, if any (read-only) */
|
|
1910
|
+
scheduleId: import_zod30.z.string().optional()
|
|
1909
1911
|
});
|
|
1910
1912
|
var CreateEvalRunInputSchema = EvalRunSchema.omit({
|
|
1911
1913
|
id: true,
|