mirror of
				https://github.com/node-ebics/node-ebics-client.git
				synced 2025-11-03 22:51:04 +00:00 
			
		
		
		
	Merge pull request #4 from anandsahil/minorChanges
remove eCollect from constant and minor verbose error handaling
This commit is contained in:
		@@ -63,9 +63,9 @@ module.exports = class BankLetter {
 | 
			
		||||
 | 
			
		||||
		try {
 | 
			
		||||
			fs.writeFileSync(path, letter);
 | 
			
		||||
			console.log('Data written to file');
 | 
			
		||||
			console.log(`Data written to file on path '${path}'`);
 | 
			
		||||
		} catch (error) {
 | 
			
		||||
			console.log(error);
 | 
			
		||||
			console.error(`error while writing bank letter to path '${path}' with error ${error}`);
 | 
			
		||||
			throw error;
 | 
			
		||||
		}
 | 
			
		||||
		return new Promise(resolve => resolve(true));
 | 
			
		||||
 
 | 
			
		||||
@@ -42,7 +42,7 @@ module.exports = class Client {
 | 
			
		||||
			throw new Error('passphrase is requierd');
 | 
			
		||||
 | 
			
		||||
		if (!keyStorage || typeof keyStorage.read !== 'function' || typeof keyStorage.write !== 'function')
 | 
			
		||||
			throw new Error('keyStorage implemntation missing or wrong');
 | 
			
		||||
			throw new Error('keyStorage implementation missing or wrong');
 | 
			
		||||
 | 
			
		||||
		this.url = url;
 | 
			
		||||
		this.partnerId = partnerId;
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
const packageJson = require('../package.json');
 | 
			
		||||
 | 
			
		||||
const name = 'eCollect Node Ebics Client';
 | 
			
		||||
const name = 'Node Ebics Client';
 | 
			
		||||
const { version } = packageJson;
 | 
			
		||||
const orderOperations = {
 | 
			
		||||
	ini: 'INI',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user