@wix/evalforge-types 0.57.0 → 0.58.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
@@ -1193,7 +1193,9 @@ var DiffContentSchema = import_zod27.z.object({
1193
1193
  expected: import_zod27.z.string(),
1194
1194
  actual: import_zod27.z.string(),
1195
1195
  diffLines: import_zod27.z.array(DiffLineSchema),
1196
- renamedFrom: import_zod27.z.string().optional()
1196
+ renamedFrom: import_zod27.z.string().optional(),
1197
+ /** Whether this file is an infrastructure/config file (e.g. .claude/settings.json, .mcp.json) */
1198
+ isInfrastructure: import_zod27.z.boolean().optional()
1197
1199
  });
1198
1200
  var CommandExecutionSchema = import_zod27.z.object({
1199
1201
  command: import_zod27.z.string(),
@@ -1217,7 +1219,9 @@ var TemplateFileSchema = import_zod27.z.object({
1217
1219
  /** Full file content after execution */
1218
1220
  content: import_zod27.z.string(),
1219
1221
  /** File status (new, modified, unchanged) */
1220
- status: import_zod27.z.enum(["new", "modified", "unchanged"])
1222
+ status: import_zod27.z.enum(["new", "modified", "unchanged"]),
1223
+ /** Whether this file is an infrastructure/config file (e.g. .claude/settings.json, .mcp.json) */
1224
+ isInfrastructure: import_zod27.z.boolean().optional()
1221
1225
  });
1222
1226
  var ApiCallSchema = import_zod27.z.object({
1223
1227
  endpoint: import_zod27.z.string(),