We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c5ae4e commit a7b05f1Copy full SHA for a7b05f1
src/whatsapp/services/chatwoot.service.ts
@@ -389,6 +389,7 @@ export class ChatwootService {
389
conversationId: number,
390
content: string,
391
messageType: 'incoming' | 'outgoing' | undefined,
392
+ privateMessage?: boolean,
393
attachments?: {
394
content: unknown;
395
encoding: string;
@@ -404,6 +405,7 @@ export class ChatwootService {
404
405
content: content,
406
message_type: messageType,
407
attachments: attachments,
408
+ private: privateMessage || false,
409
},
410
});
411
0 commit comments