@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.js CHANGED
@@ -1894,14 +1894,20 @@ var EvalRunSchema = TenantEntitySchema.extend({
1894
1894
  agentType: AgentTypeSchema.optional(),
1895
1895
  runCommand: AgentRunCommandSchema.optional(),
1896
1896
  systemPrompt: import_zod30.z.string().nullable().optional(),
1897
- modelConfig: ModelConfigSchema.optional()
1897
+ /** @deprecated retained for backward compat with stored snapshots */
1898
+ modelConfig: ModelConfigSchema.optional(),
1899
+ config: import_zod30.z.record(import_zod30.z.string(), import_zod30.z.unknown()).optional()
1898
1900
  }).optional(),
1899
1901
  /** UUID linking all runs in a comparison group */
1900
1902
  comparisonGroupId: import_zod30.z.string().optional(),
1901
1903
  /** Human-readable label for this variant (e.g., "MCP: Wix Stores") */
1902
1904
  comparisonLabel: import_zod30.z.string().optional(),
1903
1905
  /** LLM-generated analysis of the completed run */
1904
- runAnalysis: RunAnalysisSchema.optional()
1906
+ runAnalysis: RunAnalysisSchema.optional(),
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(),
1909
+ /** ID of the schedule that triggered this run, if any (read-only) */
1910
+ scheduleId: import_zod30.z.string().optional()
1905
1911
  });
1906
1912
  var CreateEvalRunInputSchema = EvalRunSchema.omit({
1907
1913
  id: true,