docs(share): add explicit manual share mode (#1074)

This commit is contained in:
Timo Clasen
2025-07-16 23:08:25 +02:00
committed by GitHub
parent d4f9375548
commit 3c6c2bf13b
3 changed files with 39 additions and 28 deletions

View File

@@ -139,9 +139,11 @@ export namespace Config {
theme: z.string().optional().describe("Theme name to use for the interface"),
keybinds: Keybinds.optional().describe("Custom keybind configurations"),
share: z
.enum(["auto", "disabled"])
.enum(["manual", "auto", "disabled"])
.optional()
.describe("Control sharing behavior: 'auto' enables automatic sharing, 'disabled' disables all sharing"),
.describe(
"Control sharing behavior:'manual' allows manual sharing via commands, 'auto' enables automatic sharing, 'disabled' disables all sharing",
),
autoshare: z
.boolean()
.optional()