Files
moltbot/src/plugin-sdk/interactive-runtime.ts
2026-05-09 10:11:56 +01:00

39 lines
1.2 KiB
TypeScript

export { reduceInteractiveReply } from "../channels/plugins/outbound/interactive.js";
export type {
InteractiveButtonStyle,
InteractiveReply,
InteractiveReplyBlock,
InteractiveReplyButton,
InteractiveReplyOption,
InteractiveReplySelectBlock,
InteractiveReplyTextBlock,
MessagePresentation,
MessagePresentationBlock,
MessagePresentationButton,
MessagePresentationButtonStyle,
MessagePresentationButtonsBlock,
MessagePresentationContextBlock,
MessagePresentationDividerBlock,
MessagePresentationInteractiveBlock,
MessagePresentationOption,
MessagePresentationSelectBlock,
MessagePresentationTextBlock,
MessagePresentationTone,
ReplyPayloadDelivery,
ReplyPayloadDeliveryPin,
} from "../interactive/payload.js";
export {
hasInteractiveReplyBlocks,
hasMessagePresentationBlocks,
hasReplyChannelData,
hasReplyContent,
interactiveReplyToPresentation,
isMessagePresentationInteractiveBlock,
normalizeMessagePresentation,
normalizeInteractiveReply,
presentationToInteractiveControlsReply,
presentationToInteractiveReply,
renderMessagePresentationFallbackText,
resolveInteractiveTextFallback,
} from "../interactive/payload.js";