mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 13:41:39 +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
14 lines
801 B
TypeScript
14 lines
801 B
TypeScript
/**
|
|
* @deprecated Use `openclaw/plugin-sdk/channel-outbound` for outbound/message
|
|
* lifecycle helpers and `openclaw/plugin-sdk/channel-inbound` for inbound
|
|
* reply dispatch helpers.
|
|
*/
|
|
|
|
export * from "./channel-outbound.js";
|
|
/** @deprecated Use `hasFinalInboundReplyDispatch(...)` from `openclaw/plugin-sdk/channel-inbound`. */
|
|
export { hasFinalChannelTurnDispatch } from "../channels/turn/dispatch-result.js";
|
|
/** @deprecated Use `hasVisibleInboundReplyDispatch(...)` from `openclaw/plugin-sdk/channel-inbound`. */
|
|
export { hasVisibleChannelTurnDispatch } from "../channels/turn/dispatch-result.js";
|
|
/** @deprecated Use `resolveInboundReplyDispatchCounts(...)` from `openclaw/plugin-sdk/channel-inbound`. */
|
|
export { resolveChannelTurnDispatchCounts } from "../channels/turn/dispatch-result.js";
|