add Ko-fi bean
Some checks failed
CI / frontend-tests (push) Has been cancelled
CI / backend-tests (push) Has been cancelled

This commit is contained in:
Julian Tabel
2026-03-20 16:39:52 +01:00
parent 6c36cbfe12
commit 088cd35002
13 changed files with 733 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
export interface JournalEntry {
id: string // UUID
runId: number
bossResultId: number | null
title: string
body: string
createdAt: string
updatedAt: string
}
export interface CreateJournalEntryInput {
bossResultId?: number | null
title: string
body: string
}
export interface UpdateJournalEntryInput {
bossResultId?: number | null
title?: string
body?: string
}