fix deleting messages was not updating server

This commit is contained in:
2026-08-30 09:41:46 +01:00
parent 69d82f1c96
commit de7f124d60
10 changed files with 414 additions and 25 deletions
+7
View File
@@ -136,6 +136,13 @@ type Label struct {
Color string `json:"color"` // hex, e.g. "#5b8def"
}
// SpamBlockEntry pairs a blocked sender address with when it was added — Settings >
// Security > Spam Block.
type SpamBlockEntry struct {
Sender string `json:"sender"`
CreatedAt time.Time `json:"created_at"`
}
// Folder represents a mailbox folder or Gmail label.
type Folder struct {
ID int64 `json:"id"`