mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:00:43 +00:00
perf: narrow Matrix monitor reply imports
This commit is contained in:
@@ -15,8 +15,10 @@ export {
|
||||
patchAllowlistUsersInConfigEntries,
|
||||
summarizeMapping,
|
||||
} from "openclaw/plugin-sdk/allow-from";
|
||||
export { createReplyPrefixOptions } from "openclaw/plugin-sdk/channel-reply-pipeline";
|
||||
export { createTypingCallbacks } from "openclaw/plugin-sdk/channel-reply-pipeline";
|
||||
export {
|
||||
createReplyPrefixOptions,
|
||||
createTypingCallbacks,
|
||||
} from "openclaw/plugin-sdk/channel-reply-options-runtime";
|
||||
export { formatLocationText, toLocationContext } from "openclaw/plugin-sdk/channel-location";
|
||||
export { getAgentScopedMediaLocalRoots } from "openclaw/plugin-sdk/agent-media-payload";
|
||||
export { logInboundDrop, logTypingFailure } from "openclaw/plugin-sdk/channel-logging";
|
||||
|
||||
@@ -212,6 +212,10 @@
|
||||
"types": "./dist/plugin-sdk/channel-reply-pipeline.d.ts",
|
||||
"default": "./dist/plugin-sdk/channel-reply-pipeline.js"
|
||||
},
|
||||
"./plugin-sdk/channel-reply-options-runtime": {
|
||||
"types": "./dist/plugin-sdk/channel-reply-options-runtime.d.ts",
|
||||
"default": "./dist/plugin-sdk/channel-reply-options-runtime.js"
|
||||
},
|
||||
"./plugin-sdk/channel-runtime": {
|
||||
"types": "./dist/plugin-sdk/channel-runtime.d.ts",
|
||||
"default": "./dist/plugin-sdk/channel-runtime.js"
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
"inbound-reply-dispatch",
|
||||
"inbound-envelope",
|
||||
"channel-reply-pipeline",
|
||||
"channel-reply-options-runtime",
|
||||
"channel-runtime",
|
||||
"interactive-runtime",
|
||||
"outbound-media",
|
||||
|
||||
4
src/plugin-sdk/channel-reply-options-runtime.ts
Normal file
4
src/plugin-sdk/channel-reply-options-runtime.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// Narrow reply helper surface for channel handlers that do not need the full
|
||||
// reply pipeline factory.
|
||||
export { createReplyPrefixOptions } from "../channels/reply-prefix.js";
|
||||
export { createTypingCallbacks } from "../channels/typing.js";
|
||||
Reference in New Issue
Block a user