refactor(auto-reply): split reply helpers

This commit is contained in:
Peter Steinberger
2025-11-26 02:03:51 +01:00
parent a2586b8b06
commit 5c8ce41e12
4 changed files with 364 additions and 323 deletions

9
src/auto-reply/types.ts Normal file
View File

@@ -0,0 +1,9 @@
export type GetReplyOptions = {
onReplyStart?: () => Promise<void> | void;
};
export type ReplyPayload = {
text?: string;
mediaUrl?: string;
mediaUrls?: string[];
};