From 84adc2353b3bf4831a30e79b4a4de818d1ef1016 Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Thu, 23 Jul 2026 11:17:59 +0200 Subject: [PATCH] fix: input checklist flags may all be false --- checklist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checklist.ts b/checklist.ts index 6e967cb..253cfeb 100644 --- a/checklist.ts +++ b/checklist.ts @@ -56,7 +56,7 @@ export interface InputChecklist { /** Pass True if other users can add tasks to the checklist */ others_can_add_tasks?: boolean; /** Pass True if other users can mark tasks as done or not done in the checklist */ - others_can_mark_tasks_as_done?: true; + others_can_mark_tasks_as_done?: boolean; } /** Describes a service message about checklist tasks marked as done or not done. */