Changeset 0.19.1 (#83)

This commit is contained in:
2026-03-01 00:28:58 +00:00
parent 748f49bedd
commit 37a9b1a68e
12 changed files with 580 additions and 22 deletions

View File

@@ -400,6 +400,7 @@ type ProjectPatch struct {
Color *string `json:"color,omitempty"`
Icon *string `json:"icon,omitempty"`
IsArchived *bool `json:"is_archived,omitempty"`
Settings JSONMap `json:"settings,omitempty"`
}
// ProjectChannel represents a channel's membership in a project.
@@ -417,6 +418,7 @@ type ProjectKB struct {
KBID string `json:"kb_id" db:"kb_id"`
AutoSearch bool `json:"auto_search" db:"auto_search"`
AddedAt string `json:"added_at" db:"added_at"`
Name string `json:"name,omitempty" db:"name"` // enriched via JOIN
}
// ProjectNote represents a note's association with a project.
@@ -424,6 +426,7 @@ type ProjectNote struct {
ProjectID string `json:"project_id" db:"project_id"`
NoteID string `json:"note_id" db:"note_id"`
AddedAt string `json:"added_at" db:"added_at"`
Title string `json:"title,omitempty" db:"title"` // enriched via JOIN
}
// =========================================