0.0.4 • Published 5 months ago

@cityssm/eft-generator v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

EFT Generator for Node

Maintainability DeepSource codecov

Formats Electronic Funds Transfer (EFT) data into the CPA 005 standard.

Supports credit (C) and debit (D) record types. Other logical record types are not supported.

Installation

npm install @cityssm/eft-generator

Usage

import fs from 'node:fs'
import { EFTGenerator, CPA_CODES } from '@cityssm/eft-generator'

const eftGenerator = new EFTGenerator({
  originatorId: '0123456789',
  originatorShortName: 'SSM',
  originatorLongName: 'The City of Sault Ste. Marie',
  fileCreationNumber: '0001'
})

eftGenerator.addDebitTransaction({
  bankInstitutionNumber: '111',
  bankTransitNumber: '22222',
  bankAccountNumber: '333333333',
  cpaCode: CPA_CODES.PropertyTaxes,
  amount: 1234.56,
  payeeName: 'Test Property Owner'
})

const output = eftGenerator.toCPA005()

fs.writeFileSync('cpa005.txt', output)

Resources

0.0.4

5 months ago

0.0.3

5 months ago

0.0.2

8 months ago

0.0.1

8 months ago