npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

smart-sms-solutions

v1.0.7

Published

Smart-SMS-Solutions sdk - https://developer.smartsmssolutions.com/

Downloads

19

Readme

Smart sms solutions

Documentation

Installation

 pnpm add smart-sms-solutions
 npm install smart-sms-solutions
 yarn add smart-sms-solutions
 bun add smart-sms-solutions

Usage

import SmartSmsSolutions from "smart-sms-solutions";

const smartSmsSolutions = new SmartSmsSolutions("api_key");

const balance = await smartSmsSolutions.getBalance();

Methods

  • Note: For all methods that needs a refId argument, the refId is optional. we generate a random refId for you if you don't provide one with a length of 50 characters.

getBalance

const balance = await smartSmsSolutions.getBalance();

getDataProductList

const dataProductList = await smartSmsSolutions.getDataProductList(
  "080********",
  "SME"
);
  • takes two arguments
  • phoneNumber - The phone number of the user
  • sort - The sort order of the list of data products. Can be undefined or SME. If you need more sort options, please open an issue.

buyInternetData

const buyInternetData = await smartSmsSolutions.buyInternetData({
  phone: "080********",
  productName: "product-name",
  refId: "ref-id",
});

buyAirtime

const buyAirtime = await smartSmsSolutions.buyAirtime({
  phone: "080********",
  amount: 1000,
  refId: "ref-id",
});

voiceOtpRequest

const voiceOtpRequest = await smartSmsSolutions.voiceOtpRequest({
  phone: "080********",
  otp: "123456",
  refId: "ref-id",
  classTitle: "THREE_DIGITS_ONCE",
});
  • If you want to add a voice otp class you can either use the classCode or classTitle property. You can't use both at the same time.
  • classTitle can be THREE_DIGITS_ONCE, THREE_DIGITS_TWICE, FOUR_DIGITS_ONCE, FOUR_DIGITS_TWICE, SIX_DIGITS_ONCE, SIX_DIGITS_TWICE
  • classTitle inputs the class code for you.
  • classCode is the code of the voice otp class. e.g. B1DXW4V8YA. Here you have to input the class code yourself.

voiceOtpDeliveryStatus

const voiceOtpDeliveryStatus = await smartSmsSolutions.voiceOtpDeliveryStatus({
  refId: "ref-id",
  logId: "log-id",
});

sendSmsOtp

const sendSmsOtp = await smartSmsSolutions.sendSmsOtp({
  phone: "080********",
  otp: "123456",
  refId: "ref-id",
  senderId: "sender-id",
  appNameCode: "app-name-code",
  templateCode: "template-code",
});

sendSms

const sendSms = await smartSmsSolutions.sendSms({
  to: "080********",
  message: "message",
  refId: "ref-id",
  senderId: "sender-id",
  dirTimeout: "dir-timeout",
  routing: "routing",
  schedule: "schedule",
  type: "type",
  simServerToken: "sim-server-token",
});
  • only to, senderId and message are required
  • type defaults to 0
  • routing defaults to 3

submitSenderId

const submitSenderId = await smartSmsSolutions.submitSenderId({
  senderId: "sender-id",
  message: "message",
  address: "address",
  organizationName: "organization-name",
  registrationNumber: "registration-number",
});

getPhoneInfo

const getPhoneInfo = await smartSmsSolutions.getPhoneInfo({
  phone: "080********",
  type: "type",
});
Always refer to the documentation for more information.