UNPKG

n8n-nodes-nqdev

Version:

Tích hợp dịch vụ eSMS.vn vào n8n, cho phép bạn dễ dàng gửi tin nhắn SMS, Zalo hoặc Viber trực tiếp từ quy trình tự động hóa. Với node này, bạn có thể nhanh chóng kết nối API eSMS.vn, gửi tin nhắn quảng cáo, chăm sóc khách hàng hoặc OTP chỉ trong vài bước

19 lines (18 loc) 875 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; import { getLoadZnsTemplateParameters } from './EsmsLoadFunctions'; import { getListBrandname, getListZaloOA, getListZnsTemplate } from './EsmsSearchFunctions'; export declare class EsmsNode implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getLoadZnsTemplateParameters: typeof getLoadZnsTemplateParameters; }; listSearch: { getListBrandname: typeof getListBrandname; getListZaloOA: typeof getListZaloOA; getListZnsTemplate: typeof getListZnsTemplate; }; }; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }