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.
9 lines (8 loc) • 822 B
TypeScript
import { API } from 'zca-js';
import { CreateReminderInput, EditReminderInput, GetListReminderInput, GetReminderInput, RemoveReminderInput, GetReminderResponsesInput, ReminderOutput } from './types';
export declare function createReminder(api: API, input: CreateReminderInput): Promise<ReminderOutput>;
export declare function editReminder(api: API, input: EditReminderInput): Promise<ReminderOutput>;
export declare function getListReminder(api: API, input: GetListReminderInput): Promise<ReminderOutput>;
export declare function getReminder(api: API, input: GetReminderInput): Promise<ReminderOutput>;
export declare function removeReminder(api: API, input: RemoveReminderInput): Promise<ReminderOutput>;
export declare function getReminderResponses(api: API, input: GetReminderResponsesInput): Promise<ReminderOutput>;