managarten/packages/shared-feedback-service/src/index.ts
Till-JS 819e4c9a2f feat(feedback): add centralized feedback system with AI-generated titles
- Add shared-feedback-types package with TypeScript types
- Add shared-feedback-service package with factory function
- Add shared-feedback-ui package with Svelte 5 components
- Add feedback module to mana-core-auth backend
- Add AI service using Gemini 2.0 Flash for title/category generation
- Add database schema and migration for feedback tables
- Integrate feedback page into Chat web app
- Add CORS support for X-App-Id header
- Add COMMANDS.md documentation for all dev commands

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 22:46:37 +01:00

24 lines
669 B
TypeScript

/**
* Shared feedback service for Manacore monorepo
*
* This package provides a factory function to create feedback service
* instances that can be used across all web and mobile apps.
*/
export { createFeedbackService, type FeedbackService } from './createFeedbackService';
export type { FeedbackServiceConfig } from './types';
// Re-export types from shared-feedback-types for convenience
export type {
Feedback,
FeedbackCategory,
FeedbackStatus,
FeedbackVote,
CreateFeedbackInput,
FeedbackQueryParams,
FeedbackResponse,
FeedbackListResponse,
VoteResponse,
FEEDBACK_CATEGORY_LABELS,
FEEDBACK_STATUS_CONFIG,
} from '@manacore/shared-feedback-types';