Files
formbricks/apps/web/modules/hub/index.ts
T
Johannes 8137de3c80 feat: integrate hub feedback records into unify workspace
Add hub-backed feedback record actions and UI flows under Unify so workspaces can list and manage feedback records from a dedicated drawer and table experience.

Made-with: Cursor
2026-04-26 19:54:30 +02:00

19 lines
474 B
TypeScript

export { getHubClient } from "./hub-client";
export {
createFeedbackRecord,
createFeedbackRecordsBatch,
listFeedbackRecords,
retrieveFeedbackRecord,
updateFeedbackRecord,
type CreateFeedbackRecordResult,
type HubFeedbackRecordResult,
type ListFeedbackRecordsResult,
} from "./service";
export type {
FeedbackRecordCreateParams,
FeedbackRecordData,
FeedbackRecordListParams,
FeedbackRecordListResponse,
FeedbackRecordUpdateParams,
} from "./types";