From 519351d35d12cba19f9906f3875360456bda6f25 Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 21 Feb 2026 13:50:57 -0800 Subject: [PATCH] chore: add 'done' field to quests --- go/internal/particle/models.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/internal/particle/models.go b/go/internal/particle/models.go index 4c1427e..26e6a1b 100644 --- a/go/internal/particle/models.go +++ b/go/internal/particle/models.go @@ -156,6 +156,7 @@ type TextData struct { type QuestData struct { Title string `json:"title"` Description string `json:"description"` + Done bool `json:"done"` Status *string `json:"status"` AssignedTo *string `json:"assigned_to,omitempty"` // email DueDate *string `json:"due_date,omitempty"` // ISO date string