From 309d7c6913e044abe1f7031a1e496c8fb451de94 Mon Sep 17 00:00:00 2001 From: Amolith Date: Fri, 19 Dec 2025 15:15:49 -0700 Subject: [PATCH] feat(notes): add Pinned field to Note struct Assisted-by: Claude Opus 4.5 via Crush --- notes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/notes.go b/notes.go index 81d1d3961dc086508f1faa8b2f0349365d6fce0f..a08ab41232a12bc8aa69994f896519a8ab415e04 100644 --- a/notes.go +++ b/notes.go @@ -15,6 +15,7 @@ type Note struct { ID string `json:"id"` NotebookID *string `json:"notebook_id"` DateOn *Date `json:"date_on"` + Pinned bool `json:"pinned"` Sources []Source `json:"sources"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"`