mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 22:22:06 +00:00
23 lines
567 B
JavaScript
23 lines
567 B
JavaScript
#! /usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const client = require('./getClient')();
|
|
const { Orders } = require('../index');
|
|
|
|
// Client keys must be already generated and send by letter.
|
|
// The bank should have enabled the user
|
|
client.send(Orders.HPB)
|
|
.then((resp) => {
|
|
console.log('Response for HPB order %j', resp);
|
|
if (resp.technicalCode !== '000000')
|
|
throw new Error('Something went wrong');
|
|
|
|
console.log('Received bank keys: %j', resp.bankKeys);
|
|
return client.setBankKeys(resp.bankKeys);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|