feat(frontend): NoteVersion pin fields + pin/unpin client helpers

This commit is contained in:
2026-05-13 13:59:47 -04:00
parent ce41f2a3ee
commit 59dee3a19f
2 changed files with 20 additions and 0 deletions
+2
View File
@@ -31,5 +31,7 @@ export interface NoteVersion {
title: string;
tags: string[];
body?: string;
pin_kind: "auto" | "manual" | null;
pin_label: string | null;
created_at: string;
}