chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-09 20:24:28 +00:00
parent d62442bb5d
commit 480aa8b23b
2 changed files with 2 additions and 3 deletions

View File

@@ -27,8 +27,7 @@ function diff(kind: string, diffs: { file: string; patch?: string }[] | undefine
return diffs?.map((item, i) => ({
...item,
file: redact(`${kind}-file`, String(i), item.file),
patch:
item.patch === undefined ? undefined : redact(`${kind}-patch`, String(i), item.patch),
patch: item.patch === undefined ? undefined : redact(`${kind}-patch`, String(i), item.patch),
}))
}

View File

@@ -9120,7 +9120,7 @@
"enum": ["added", "deleted", "modified"]
}
},
"required": ["file", "patch", "additions", "deletions"],
"required": ["file", "additions", "deletions"],
"additionalProperties": false
},
"ProviderAuthError": {