@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.mjs CHANGED
@@ -1657,7 +1657,9 @@ var EvalRunSchema = TenantEntitySchema.extend({
1657
1657
  /** LLM-generated analysis of the completed run */
1658
1658
  runAnalysis: RunAnalysisSchema.optional(),
1659
1659
  /** IDs of folders this run belongs to (read-only, managed via AddRunToFolder / RemoveRunFromFolder) */
1660
- folderIds: z30.array(z30.string()).optional()
1660
+ folderIds: z30.array(z30.string()).optional(),
1661
+ /** ID of the schedule that triggered this run, if any (read-only) */
1662
+ scheduleId: z30.string().optional()
1661
1663
  });
1662
1664
  var CreateEvalRunInputSchema = EvalRunSchema.omit({
1663
1665
  id: true,