mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 21:52:07 +00:00
c3d3decd6a
In order to more easily manage testing of various order types as well as production, development etc. environments, externalize this config values. Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
25 lines
686 B
JavaScript
25 lines
686 B
JavaScript
#! /usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const ebics = require('../index');
|
|
const configjs = require('./config.js');
|
|
|
|
const client = gClient;
|
|
|
|
// The bank keys must have been already saved
|
|
client.send(ebics.Orders.C52(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
|
|
.then((resp) => {
|
|
console.log('Response for C52 order %j', resp);
|
|
if (resp.technicalCode !== '000000')
|
|
throw new Error('Something went wrong');
|
|
|
|
// Parsing and processing the CAMT052 file should happen somewhere here, ideally after saving it to disk
|
|
const data = Buffer.from(resp.orderData);
|
|
console.log(data.toString('utf8'));
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|