0.1.4 • Published 3 years ago

smsaero-v2 v0.1.4

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

SMSAero V2

SMSAero V2 client written in TypeScript.

Install

npm i smsaero-v2 or yarn add smsaero-v2

Usage

Sending sms example:

import {Client, Message} from "smsaero-v2";

// create a client instance with login/key
// and pass a timeout option (optional)
const client = new Client("login", "key", {timeout: 15000});
(async function () {
	const res = await api.send(new Message({
	  sign: "SMS Aero",
	  number: "79991112233", // num or [num1, num2, ...numN]
	  text: "Test message"
	}));

	console.log(res)
})();

Output format described in interfaces or SMSAero documentation.

API

See TypeScript interfaces.

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

6 years ago

0.1.1

6 years ago