mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-06 11:20:56 -05:00
963f89c524
Replace .sort() with .toSorted() to avoid mutating arrays in-place during chaining, and remove the redundant CreateFeedbackRecordResult type alias in favor of HubFeedbackRecordResult. 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";
|