feat: add WhatsApp config fields and IngestJobData type

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 14:58:46 +05:30
parent b16a30beb2
commit 891986d3ba
3 changed files with 32 additions and 0 deletions
+10
View File
@@ -38,3 +38,13 @@ export interface SyncRoute {
targetGroupId: string;
isActive: boolean;
}
export interface IngestJobData {
platformMsgId: string;
platform: Platform;
sourceGroupId: string;
senderJid: string;
senderName?: string;
content: string;
tags: string[];
}