mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-23 02:45:21 -05:00
5169dec510
Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
439 B
TypeScript
18 lines
439 B
TypeScript
export { getHubClient } from "./hub-client";
|
|
export {
|
|
createFeedbackRecord,
|
|
createFeedbackRecordsBatch,
|
|
listFeedbackRecords,
|
|
retrieveFeedbackRecord,
|
|
updateFeedbackRecord,
|
|
type HubFeedbackRecordResult,
|
|
type ListFeedbackRecordsResult,
|
|
} from "./service";
|
|
export type {
|
|
FeedbackRecordCreateParams,
|
|
FeedbackRecordData,
|
|
FeedbackRecordListParams,
|
|
FeedbackRecordListResponse,
|
|
FeedbackRecordUpdateParams,
|
|
} from "./types";
|