fix(config): allow gateway.remote ssh fields

This commit is contained in:
Peter Steinberger
2026-01-09 10:50:19 +01:00
parent d258c68ca1
commit fe69bc9439
3 changed files with 10 additions and 0 deletions

View File

@@ -1283,6 +1283,8 @@ export const ClawdbotSchema = z.object({
remote: z
.object({
url: z.string().optional(),
sshTarget: z.string().optional(),
sshIdentity: z.string().optional(),
token: z.string().optional(),
password: z.string().optional(),
})