0.1.4 • Published 6 months ago

@types/mpesa-node v0.1.4

Weekly downloads
33
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/mpesa-node

Summary

This package contains type definitions for mpesa-node (https://github.com/safaricom/mpesa-node-library#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mpesa-node.

index.d.ts

// Type definitions for mpesa-node 0.1
// Project: https://github.com/safaricom/mpesa-node-library#readme
// Definitions by: Peter Munyao <https://github.com/petekmunz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { AxiosPromise } from 'axios';

declare class Mpesa {
    constructor(config: ConfigOptions);

    accountBalance(shortCode: string, idType: string, queueUrl: string, resultUrl: string, remarks?: string, initiator?: string, commandId?: string): AxiosPromise;

    b2b(senderParty: string, receiverParty: string, amount: number, queueUrl: string, resultUrl: string, senderType?: number, receiverType?: number, initiator?: string,
        commandId?: string, accountRef?: string, remarks?: string): AxiosPromise;

    b2c(senderParty: string, receiverParty: string, amount: number, queueUrl: string, resultUrl: string, commandId?: string, initiatorName?: string,
        remarks?: string, occasion?: string): AxiosPromise;

    c2bRegister(confirmationUrl: string, validationUrl: string, shortCode?: string, responseType?: string): AxiosPromise;

    c2bSimulate(msisdn: string, amount: number, billRefNumber: string, commandId?: string, shortCode?: string): AxiosPromise;

    lipaNaMpesaOnline(senderMsisdn: string, amount: number, callbackUrl: string, accountRef: string, transactionDesc?: string,
        transactionType?: string, shortCode?: string, passKey?: string): AxiosPromise;

    lipaNaMpesaQuery(checkoutRequestId: string, shortCode?: string, passKey?: string): AxiosPromise;

    oAuth(consumerKey: string, consumerSecret: string, baseURL?: string): AxiosPromise;

    reversal(transactionId: string, amount: number, queueUrl: string, resultUrl: string,
        shortCode?: string, remarks?: string, occasion?: string, initiator?: string, receiverIdType?: string, commandId?: string): AxiosPromise;

    transactionStatus(transactionId: string, amount: number, queueUrl: string, resultUrl: string, shortCode?: string, remarks?: string,
        occasion?: string, initiator?: string, receiverIdType?: string, commandId?: string): AxiosPromise;
}

interface ConfigOptions {
    consumerKey: string;
    consumerSecret: string;
    enviroment?: string | undefined;
    shortCode?: string | undefined;
    initiatorName?: string | undefined;
    lipaNaMpesaShortCode?: string | undefined;
    lipaNaMpesaShortPass?: string | undefined;
    securityCredential?: string | undefined;
    certPath?: string | undefined;
}

export = Mpesa;

Additional Details

  • Last updated: Thu, 08 Jul 2021 18:51:01 GMT
  • Dependencies: @types/axios
  • Global values: none

Credits

These definitions were written by Peter Munyao.

0.1.2

8 months ago

0.1.4

6 months ago

0.1.3

7 months ago

0.1.1

3 years ago

0.1.0

4 years ago