feat: add whatsapp web qr chat channel (#16238)

Adds a WhatsApp chat channel backed by a QR-based web login flow so users can connect without manual token setup.
This commit is contained in:
buua436
2026-06-23 17:45:31 +08:00
committed by GitHub
parent e15130534f
commit aba5d172bd
16 changed files with 3160 additions and 10 deletions

View File

@@ -28,4 +28,7 @@ export const updateChatChannel = (id: string, data: Record<string, any>) =>
export const deleteChatChannel = (id: string) =>
request.delete(api.chatChannelDel(id));
export const fetchChatChannelRuntime = (id: string) =>
request.get(api.chatChannelRuntime(id));
export default chatChannelService;