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.
18 lines (17 loc) • 551 B
TypeScript
export declare const MAX_QUEUE_SIZE = 1000;
export declare const CATCH_UP_COOLDOWN_MS = 60000;
export declare enum ThreadTypeValue {
User = 0,
Group = 1
}
export declare const EVENT_TYPES: {
readonly MESSAGE: "message";
readonly REACTION: "reaction";
readonly TYPING: "typing";
readonly SEEN_MESSAGES: "seen_messages";
readonly DELIVERED_MESSAGES: "delivered_messages";
readonly UNDO: "undo";
readonly GROUP_EVENT: "group_event";
readonly FRIEND_EVENT: "friend_event";
readonly CONNECTION: "connection";
};