refactor(whatsapp): extract inbound delivery coordinator

This commit is contained in:
Vincent Koc
2026-07-29 16:53:04 +08:00
parent 3b1cbbe178
commit 2f53bb5ab7
4 changed files with 1164 additions and 1068 deletions
@@ -285,3 +285,7 @@ export function createWhatsAppGroupMetadataCacheOwner(params: GroupMetadataCache
applyOutboundMentions,
} as const;
}
export type WhatsAppGroupMetadataCacheOwner = ReturnType<
typeof createWhatsAppGroupMetadataCacheOwner
>;
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -479,3 +479,7 @@ export async function createWhatsAppAttachedSocketSession(options: SocketSession
markRead,
} as const;
}
export type WhatsAppAttachedSocketSession = Awaited<
ReturnType<typeof createWhatsAppAttachedSocketSession>
>;