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

ebics-api-client-node

v1.0.9

Published

nodejs module to utilize EBICS API Client application

Downloads

133

Readme

EBICS API Client (nodeJs module)

NodeJS module to utilize EBICS API Client application.
EBICS API Client - https://sites.google.com/view/ebics-api-client
EBICS Client can be deployed as a standalone service on a webserver or within a Docker container and provides:

  • :100: Support for EBICS Integration
  • :white_check_mark: RESTful API to operate with orders, connections, keyrings, access logs, fetched files
  • :white_check_mark: Extended Access Policy
  • :white_check_mark: Execute order transactions directly from the App
  • :white_check_mark: Manage Connections and Monitor access logs
  • :white_check_mark: Scheduler Jobs, Fetched files secure storage

Installation

npm install ebics-api-client-node

Usage


import EbicsApiClient from '../src/index.js';

const client = new EbicsApiClient(process.env.API_KEY, process.env.API_HOST);

Methods

  • Connections

Connections between client application and bank server.

| Method | Description | |------------------------------------|-----------------------------------------| | client.connection.create(data) | Create new connection to the Bank. | | client.connection.update(id, data) | Update existing connection to the Bank. | | client.connection.get(id) | One connection to the Bank. | | client.connection.list() | List of all connections to the Bank. | | client.connection.delete(id) | Delete a connection to the Bank. |

  • Keyrings

Keyring with sensitive keys to perform order types methods.

| Method | Description | |-----------------------------------|--------------------------------------------------------------------------------------------| | client.keyring.generate(data) | Generate new keyring and encrypt by secret (Requires before INI and HIA order types). | | client.keyring.init(data) | Initialize keyring (Only before Bank activated connection). | | client.keyring.confirm(data) | Confirm keyring (Only after Bank activated connection). | | client.keyring.suspend(data) | Deactivate keyring (SPR order type). | | client.keyring.letter(data) | Letter should be sent to Bank for Keyring activation. | | client.keyring.changeSecret(data) | Change secret for existing Keyring. |

  • Order Types

Order type methods to download or upload files to/from the Bank.

| Method | Description | |----------------------------|----------------------------------------------------------------------------------------------| | client.orderType.hev(data) | Order type methods to download or upload files to/from the Bank. | | client.orderType.ini(data) | Send to the bank public signature of electronic signature. | | client.orderType.ini(data) | Send to the bank public signatures of authentication and encryption. | | client.orderType.hpb(data) | Download the Bank public signatures of authentication and encryption. | | client.orderType.hpd(data) | Download the bank server parameters. | | client.orderType.hkd(data) | Download customers customer and subscriber information. | | client.orderType.htd(data) | Download subscribers customer and subscriber information. | | client.orderType.haa(data) | Download Bank available order types. | | client.orderType.fdl(data) | Download the files from the bank. | | client.orderType.ful(data) | Upload the files to the bank. | | client.orderType.ptk(data) | Download transaction status. | | client.orderType.vmk(data) | Download the interim transaction report in SWIFT format (MT942). | | client.orderType.sta(data) | Download the bank account statement. | | client.orderType.c52(data) | Download the bank account report in Camt.052 format. | | client.orderType.c53(data) | Download the bank account statement in Camt.053 format. | | client.orderType.c54(data) | Download Debit Credit Notification (DTI). | | client.orderType.z52(data) | Download the bank account report in Camt.052 format (i.e Switzerland financial services). | | client.orderType.z53(data) | Download the bank account statement in Camt.053 format (i.e Switzerland financial services). | | client.orderType.z54(data) | Download the bank account statement in Camt.054 format (i.e available in Switzerland). | | client.orderType.zsr(data) | Download Order/Payment Status report. | | client.orderType.xek(data) | Download account information as PDF-file. | | client.orderType.cct(data) | Upload initiation of the credit transfer per Single Euro Payments Area. | | client.orderType.cip(data) | Upload initiation of the instant credit transfer per Single Euro Payments Area. | | client.orderType.xe2(data) | Upload initiation of the Swiss credit transfer (i.e available in Switzerland). | | client.orderType.xe3(data) | Upload SEPA Direct Debit Initiation, CH definitions, CORE (i.e available in Switzerland). | | client.orderType.yct(data) | Upload Credit transfer CGI (SEPA & non SEPA). | | client.orderType.cdb(data) | Upload initiation of the direct debit transaction for business. | | client.orderType.cdd(data) | Upload initiation of the direct debit transaction. | | client.orderType.btd(data) | Download request files of any BTF structure. | | client.orderType.btu(data) | Upload the files to the bank. |

  • Access Logs

Tracked access logs to Bank for Connections

| Method | Description | |-------------------------|---------------------------| | client.accessLog.list() | Access logs to the Banks. |

  • Fetched files

Fetched files by run Scheduler Jobs

| Method | Description | |---------------------------------|----------------------------------------------------------------| | client.fetchedFile.list() | Fetched files of run scheduler order transactions to the Bank. | | client.fetchedFile.download(id) | Download fetched file content. |