2019-11-25 15:01:34 +00:00
|
|
|
#! /usr/bin/env node
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2019-12-18 14:48:05 +00:00
|
|
|
const client = require('./getClient')();
|
2019-12-30 09:36:11 +00:00
|
|
|
const { Orders } = require('../index');
|
2019-11-25 15:01:34 +00:00
|
|
|
|
|
|
|
// The bank keys must have been already saved
|
2019-12-30 09:36:11 +00:00
|
|
|
client.send(Orders.DKI(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
|
2019-11-25 15:01:34 +00:00
|
|
|
.then((resp) => {
|
|
|
|
console.log('Response for DKI order %j', resp);
|
|
|
|
if (resp.technicalCode !== '000000')
|
|
|
|
throw new Error('Something went wrong');
|
|
|
|
|
|
|
|
// Processing of the Exchange Rate file should go 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);
|
|
|
|
});
|