@wix/evalforge-types 0.68.0 → 0.69.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
@@ -1169,7 +1169,11 @@ var EvalRunSchema = TenantEntitySchema.extend({
1169
1169
  runCommand: AgentRunCommandSchema.optional(),
1170
1170
  systemPrompt: z28.string().nullable().optional(),
1171
1171
  modelConfig: ModelConfigSchema.optional()
1172
- }).optional()
1172
+ }).optional(),
1173
+ /** UUID linking all runs in a comparison group */
1174
+ comparisonGroupId: z28.string().optional(),
1175
+ /** Human-readable label for this variant (e.g., "MCP: Wix Stores") */
1176
+ comparisonLabel: z28.string().optional()
1173
1177
  });
1174
1178
  var CreateEvalRunInputSchema = EvalRunSchema.omit({
1175
1179
  id: true,