feat(notes): add Pinned field to Note struct

Amolith created

Assisted-by: Claude Opus 4.5 via Crush

Change summary

notes.go | 1 +
1 file changed, 1 insertion(+)

Detailed changes

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"`