n8n-nodes-zuckzapgo
Version:
n8n community nodes for ZuckZapGo - WhatsApp Multi-Device REST API
32 lines • 739 B
TypeScript
import type { IDataObject } from 'n8n-workflow';
export interface IEmail {
from?: string;
to?: string;
cc?: string;
bcc?: string;
replyTo?: string;
inReplyTo?: string;
reference?: string;
subject: string;
body: string;
htmlBody?: string;
attachments?: IDataObject[];
}
export interface IWhatsAppMessage {
phone: string;
body: string;
contextInfo?: {
isForwarded?: boolean;
stanzaId?: string;
participant?: string;
mentionAll?: boolean;
mentionedJID?: string[];
};
buttons?: Array<{
displayText: string;
type: string;
url?: string;
phoneNumber?: string;
}>;
}
//# sourceMappingURL=interfaces.d.ts.map