mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 15:31:13 +00:00
* refactor(plugin-sdk)!: delete the zero-consumer channel-ingress facade, AccessFacts projections, and dead dispatch aliases * chore(plugin-sdk): refresh API baseline hash for the facade deletions * fix(channels): drop dead AccessFacts field writes stranded by the facade deletion * chore(plugin-sdk): refresh API baseline hash after rebase
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
/**
|
|
* @deprecated Use `openclaw/plugin-sdk/channel-inbound` for inbound runners and
|
|
* dispatch predicates. Use `openclaw/plugin-sdk/channel-outbound` for message
|
|
* delivery helpers.
|
|
*/
|
|
|
|
export {
|
|
runPreparedInboundReply,
|
|
runPreparedInboundReplyTurn,
|
|
runChannelInboundEvent,
|
|
runInboundReplyTurn,
|
|
dispatchChannelInboundReply,
|
|
hasFinalInboundReplyDispatch,
|
|
hasVisibleInboundReplyDispatch,
|
|
deliverInboundReplyWithMessageSendContext,
|
|
recordDroppedChannelTurnHistory,
|
|
recordDroppedChannelInboundHistory,
|
|
resolveInboundReplyDispatchCounts,
|
|
dispatchReplyFromConfigWithSettledDispatcher,
|
|
buildInboundReplyDispatchBase,
|
|
dispatchInboundReplyWithBase,
|
|
recordInboundSessionAndDispatchReply,
|
|
recordChannelBotPairLoopAndCheckSuppression,
|
|
} from "../channels/message/inbound-reply-dispatch.js";
|
|
export type {
|
|
ChannelTurnDroppedHistoryOptions,
|
|
ChannelInboundDroppedHistoryOptions,
|
|
ChannelTurnRecordOptions,
|
|
InboundReplyRecordOptions,
|
|
DurableInboundReplyDeliveryParams,
|
|
ChannelBotLoopProtectionFacts,
|
|
ChannelInboundEventRunnerParams,
|
|
PreparedInboundReply,
|
|
AssembledInboundReply,
|
|
InboundReplyDispatchResult,
|
|
} from "../channels/message/inbound-reply-dispatch.js";
|