n8n-nodes-zalo-nnt
Version:
Unofficial Zalo integration for n8n - Send messages, manage groups, user operations with QR login. No API key required, works via browser simulation.
13 lines (12 loc) • 482 B
TypeScript
import { Message, Reaction, Typing } from 'zca-js';
export declare class EventFilter {
private threadTypes;
private specificIds;
private messageContentTypes;
constructor(threadTypes: string[], specificIds: string[], messageContentTypes?: string[]);
shouldProcessMessage(message: Message): boolean;
shouldProcessReaction(reaction: Reaction): boolean;
shouldProcessTyping(typing: Typing): boolean;
private getThreadType;
private checkSpecificId;
}