From 96e6ba3046c09ead416b60c41023e5edd3936a18 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 15 Mar 2026 18:42:38 -0700 Subject: [PATCH] Reply: expose shared interactive payloads --- src/auto-reply/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/auto-reply/types.ts b/src/auto-reply/types.ts index 76f3e746a10..c424f43ab92 100644 --- a/src/auto-reply/types.ts +++ b/src/auto-reply/types.ts @@ -1,4 +1,5 @@ import type { ImageContent } from "@mariozechner/pi-ai"; +import type { InteractiveReply } from "../interactive/payload.js"; import type { TypingController } from "./reply/typing.js"; export type BlockReplyContext = { @@ -76,6 +77,7 @@ export type ReplyPayload = { text?: string; mediaUrl?: string; mediaUrls?: string[]; + interactive?: InteractiveReply; btw?: { question: string; };