feat: initial commit

This commit is contained in:
2026-03-05 22:12:38 +01:00
commit bce762a783
380 changed files with 51955 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
import api from './client'
export interface Notification {
id: string
action: string
entity_type: string | null
entity_id: string | null
details: Record<string, unknown> | null
timestamp: string
read_at: string | null
}
export interface NotificationListResponse {
items: Notification[]
unread_count: number
total: number
}
export async function getNotifications(params?: {
limit?: number
offset?: number
unread_only?: boolean
}): Promise<NotificationListResponse> {
const { data } = await api.get('/notifications', { params })
return data
}
export async function getUnreadCount(): Promise<number> {
const { data } = await api.get('/notifications/unread-count')
return data.unread_count
}
export async function markAsRead(ids?: string[]): Promise<void> {
await api.post('/notifications/mark-read', { notification_ids: ids ?? null })
}
export async function markOneAsRead(id: string): Promise<void> {
await api.post(`/notifications/${id}/mark-read`)
}