🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@devtools-bp/nestjs-paystack

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devtools-bp/nestjs-paystack

Powerful library that provides seamless integration with the Paystack payment gateway for your NestJS applications. You can easily handle payment transactions with minimal effort.

latest
npmnpm
Version
1.10.0
Version published
Maintainers
1
Created
Source

nestjs-paystack

The wrapper provides a convenient way to integrate Paystack payment functionality into your NestJS applications.

Installation

npm install @devtools-bp/nestjs-paystack

or

yarn add @devtools-bp/nestjs-paystack

Configuration

To use the nestjs-paystack, you need to provide your Paystack API key. You can obtain the API key from the Paystack dashboard. Once you have the API key, you can configure the wrapper in your NestJS application.

In App Module

import { Module } from '@nestjs/common';

import { NsPaystackModule } from '@devtools-bp/nestjs-paystack';

@Module({
  imports: [
    NsPaystackModule.register({
      secretKey: 'PAYSTACK_SECRET_KEY'
    })
  ]
})
export class AppModule {}

Or use async registration to access environment variables

In App Module

import { Module } from '@nestjs/common';

import { NsPaystackModule } from '@devtools-bp/nestjs-paystack';
import { ConfigService } from '@nestjs/config';

@Module({
  imports: [
    NsPaystackModule.registerAsync({
      useFactory: (configService: ConfigService) => ({
        secretKey: configService.get('PAYSTACK_SECRET_KEY')
      }),
      inject: [ConfigService]
    })
  ]
})
export class AppModule {}

Usage

In Service

import { Injectable } from '@nestjs/common';
import {
  PsTransactionsService,
  PsInitializeTransactionRequestModel,
  PsInitializeTransactionResponseModel
} from '@devtools-bp/nestjs-paystack';

@Injectable()
export class TransactionsService {
  constructor(private readonly psTransactionsService: PsTransactionsService) {}

  initializeTransaction(
    payload: PsInitializeTransactionRequestModel
  ): Promise<PsInitializeTransactionResponseModel> {
    return this.psTransactionsService.initializeTransaction(payload);
  }
}

In Controller

import { Body, Controller, Post } from '@nestjs/common';
import {
  PsInitializeTransactionRequestModel,
  PsInitializeTransactionResponseModel
} from '@devtools-bp/nestjs-paystack';
import { TransactionsService } from '../services/transactions.service';

@Controller('transaction')
export class TransactionController {
  constructor(private readonly transactionsService: TransactionsService) {}

  @Post('initialize')
  initialize(
    @Body() payload: PsInitializeTransactionRequestModel
  ): Promise<PsInitializeTransactionResponseModel> {
    return this.transactionsService.initializeTransaction(payload);
  }
}

API ENDPOINTS

  • Transactions âś”
    • Initialize Transaction âś”
    • Verify Transaction âś”
    • List Transaction âś”
    • Fetch Transaction âś”
    • Charge Transaction âś”
    • View Transaction Timeline âś”
    • Transaction Totals âś”
    • Export Transaction âś”
    • Partial Debit âś”
  • Transaction Splits âś”
    • Create Split âś”
    • List Split âś”
    • Fetch Split âś”
    • Update Split âś”
    • Add/Update Subaccount Split âś”
    • Remove Subaccount from Split âś”
  • Terminal
  • Customers
  • Dedicated Virtual Accounts
  • Apple Pay
  • Subaccounts
  • Plans
  • Subscriptions
  • Products
  • Payment Pages
  • Payment Requests
  • Settlements
  • Transaction Recipients
  • Transfers ⏳
    • Initiate Transfer ⏳
    • Finalize Transfer ⏳
    • Initiate Bulk Transfer ⏳
    • List Transfer ⏳
    • Fetch Transfer ⏳
    • Verify Transfer ⏳
  • Transfers Control
  • Bulk Charges
  • Integration
  • Charge
  • Disputes
  • Refunds
  • Verification âś”
    • Resolve Account Number âś”
    • Validate Account âś”
    • Resolve Card BIN âś”
  • Miscellaneous âś”
    • List Banks âś”
    • List Countries âś”
    • List States (AVS) âś”

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository. Learn how to contribute to the project.

License

The devtools-bp monorepo is released under the MIT License. Please make sure you understand its terms and conditions when using the libraries and tools provided in this repository.

Authors

  • Brian Pooe

Keywords

nestjs

FAQs

Package last updated on 09 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts