mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 21:49:38 +00:00
fix(config): align bluebubbles network schema
This commit is contained in:
parent
2d6e75ccd5
commit
0b8336f49d
1 changed files with 6 additions and 1 deletions
|
|
@ -1424,7 +1424,12 @@ export const BlueBubblesAccountSchemaBase = z
|
|||
mediaMaxMb: z.number().int().positive().optional(),
|
||||
mediaLocalRoots: z.array(z.string()).optional(),
|
||||
sendReadReceipts: z.boolean().optional(),
|
||||
allowPrivateNetwork: z.boolean().optional(),
|
||||
network: z
|
||||
.object({
|
||||
dangerouslyAllowPrivateNetwork: z.boolean().optional(),
|
||||
})
|
||||
.strict()
|
||||
.optional(),
|
||||
blockStreaming: z.boolean().optional(),
|
||||
blockStreamingCoalesce: BlockStreamingCoalesceSchema.optional(),
|
||||
groups: z.record(z.string(), BlueBubblesGroupConfigSchema.optional()).optional(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue