@wix/evalforge-types 0.79.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
@@ -1646,14 +1646,20 @@ var EvalRunSchema = TenantEntitySchema.extend({
1646
1646
  agentType: AgentTypeSchema.optional(),
1647
1647
  runCommand: AgentRunCommandSchema.optional(),
1648
1648
  systemPrompt: z30.string().nullable().optional(),
1649
- modelConfig: ModelConfigSchema.optional()
1649
+ /** @deprecated retained for backward compat with stored snapshots */
1650
+ modelConfig: ModelConfigSchema.optional(),
1651
+ config: z30.record(z30.string(), z30.unknown()).optional()
1650
1652
  }).optional(),
1651
1653
  /** UUID linking all runs in a comparison group */
1652
1654
  comparisonGroupId: z30.string().optional(),
1653
1655
  /** Human-readable label for this variant (e.g., "MCP: Wix Stores") */
1654
1656
  comparisonLabel: z30.string().optional(),
1655
1657
  /** LLM-generated analysis of the completed run */
1656
- runAnalysis: RunAnalysisSchema.optional()
1658
+ runAnalysis: RunAnalysisSchema.optional(),
1659
+ /** IDs of folders this run belongs to (read-only, managed via AddRunToFolder / RemoveRunFromFolder) */
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()
1657
1663
  });
1658
1664
  var CreateEvalRunInputSchema = EvalRunSchema.omit({
1659
1665
  id: true,