fix(runtime): bypass get-reply barrel exports

This commit is contained in:
Vincent Koc
2026-04-11 21:56:48 +01:00
parent b1290e61fd
commit 25665dd335
3 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
export { getReplyFromConfig } from "./reply.js";
export { getReplyFromConfig } from "./reply/get-reply.js";

View File

@@ -1 +1 @@
export { getReplyFromConfig } from "../reply.js";
export { getReplyFromConfig } from "./get-reply.js";

View File

@@ -26,7 +26,7 @@ export {
stripHeartbeatToken,
} from "../auto-reply/heartbeat.js";
export { resolveHeartbeatReplyPayload } from "../auto-reply/heartbeat-reply-payload.js";
export { getReplyFromConfig } from "../auto-reply/reply.js";
export { getReplyFromConfig } from "../auto-reply/reply/get-reply.js";
export { HEARTBEAT_TOKEN, isSilentReplyText, SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js";
export { isAbortRequestText } from "../auto-reply/reply/abort.js";
export { isBtwRequestText } from "../auto-reply/reply/btw-command.js";