mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-06-04 21:30:11 +00:00
20c8fb0898
Introduce user-reported-issues and Goodreads shelf sync features and wire them into notifications. Adds Prisma migrations and schema changes (ReportedIssue, GoodreadsShelf, GoodreadsBookMapping), API endpoints for reporting (POST /audiobooks/[asin]/report-issue) and admin management (list, resolve/dismiss, replace), and an admin UI section to view/dismiss/replace reported issues. Adds a new notification event (issue_reported) with updates to notification schemas, docs and provider handling, plus a notification-events constants file. Refactors request creation to use createRequestForUser service, adds a Goodreads sync processor/service/hooks/UI modals, a scrape-resilience util, and related tests and minor integration updates.
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
/**
|
|
* Notification Service - Public API
|
|
* Documentation: documentation/backend/services/notifications.md
|
|
*/
|
|
|
|
// Interface + shared types
|
|
export type {
|
|
INotificationProvider,
|
|
NotificationEvent,
|
|
NotificationBackendType,
|
|
NotificationPayload,
|
|
ProviderConfigField,
|
|
ProviderMetadata,
|
|
} from './INotificationProvider';
|
|
|
|
// Centralized event constants (re-exported for convenience)
|
|
export {
|
|
NOTIFICATION_EVENTS,
|
|
NOTIFICATION_EVENT_KEYS,
|
|
EVENT_LABELS,
|
|
getEventMeta,
|
|
getEventLabel,
|
|
} from '@/lib/constants/notification-events';
|
|
export type { NotificationSeverity, NotificationPriority, NotificationEventMeta } from '@/lib/constants/notification-events';
|
|
|
|
// Core service
|
|
export {
|
|
NotificationService,
|
|
getNotificationService,
|
|
registerProvider,
|
|
getProvider,
|
|
getRegisteredProviderTypes,
|
|
getAllProviderMetadata,
|
|
} from './notification.service';
|
|
|
|
// Provider types
|
|
export type { AppriseConfig } from './providers/apprise.provider';
|
|
export type { DiscordConfig } from './providers/discord.provider';
|
|
export type { NtfyConfig } from './providers/ntfy.provider';
|
|
export type { PushoverConfig } from './providers/pushover.provider';
|
|
|
|
// Provider classes
|
|
export { AppriseProvider } from './providers/apprise.provider';
|
|
export { DiscordProvider } from './providers/discord.provider';
|
|
export { NtfyProvider } from './providers/ntfy.provider';
|
|
export { PushoverProvider } from './providers/pushover.provider';
|