@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 +6 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +6 -2
- package/build/index.mjs.map +2 -2
- package/build/types/agent/adapter.d.ts +10 -0
- package/build/types/evaluation/eval-result.d.ts +2 -0
- package/build/types/evaluation/eval-run.d.ts +7 -0
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -993,7 +993,9 @@ var DiffContentSchema = z27.object({
|
|
|
993
993
|
expected: z27.string(),
|
|
994
994
|
actual: z27.string(),
|
|
995
995
|
diffLines: z27.array(DiffLineSchema),
|
|
996
|
-
renamedFrom: z27.string().optional()
|
|
996
|
+
renamedFrom: z27.string().optional(),
|
|
997
|
+
/** Whether this file is an infrastructure/config file (e.g. .claude/settings.json, .mcp.json) */
|
|
998
|
+
isInfrastructure: z27.boolean().optional()
|
|
997
999
|
});
|
|
998
1000
|
var CommandExecutionSchema = z27.object({
|
|
999
1001
|
command: z27.string(),
|
|
@@ -1017,7 +1019,9 @@ var TemplateFileSchema = z27.object({
|
|
|
1017
1019
|
/** Full file content after execution */
|
|
1018
1020
|
content: z27.string(),
|
|
1019
1021
|
/** File status (new, modified, unchanged) */
|
|
1020
|
-
status: z27.enum(["new", "modified", "unchanged"])
|
|
1022
|
+
status: z27.enum(["new", "modified", "unchanged"]),
|
|
1023
|
+
/** Whether this file is an infrastructure/config file (e.g. .claude/settings.json, .mcp.json) */
|
|
1024
|
+
isInfrastructure: z27.boolean().optional()
|
|
1021
1025
|
});
|
|
1022
1026
|
var ApiCallSchema = z27.object({
|
|
1023
1027
|
endpoint: z27.string(),
|