feat: add update channel support

This commit is contained in:
Peter Steinberger
2026-01-17 11:40:02 +00:00
parent ed5c5629f6
commit a9f21b3d3a
10 changed files with 455 additions and 20 deletions

View File

@@ -61,6 +61,11 @@ export const ClawdbotSchema = z
redactPatterns: z.array(z.string()).optional(),
})
.optional(),
update: z
.object({
channel: z.union([z.literal("stable"), z.literal("beta")]).optional(),
})
.optional(),
browser: z
.object({
enabled: z.boolean().optional(),