mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-27 03:37:44 +02:00
chore: commit remaining changes from recent sessions
- Mana page updates across 12 apps (credit display improvements) - Todo board view editor + view selector components - Docker Hono server base Dockerfile - Matrix web vite config update - Docker compose updates - Feedback types.ts (recovered) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
18fae3b66d
commit
4aa8d870a6
18 changed files with 288 additions and 38 deletions
13
packages/feedback/src/types.ts
Normal file
13
packages/feedback/src/types.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* Configuration for creating a feedback service instance
|
||||
*/
|
||||
export interface FeedbackServiceConfig {
|
||||
/** Base API URL for the feedback endpoints */
|
||||
apiUrl: string;
|
||||
/** App identifier for multi-app support */
|
||||
appId: string;
|
||||
/** Function to get the current auth token */
|
||||
getAuthToken: () => Promise<string | null>;
|
||||
/** Optional custom endpoint prefix (default: '/api/v1/feedback') */
|
||||
feedbackEndpoint?: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue