From 3d4c94dff86cccbc39d9db38d374293b43bb302f Mon Sep 17 00:00:00 2001 From: nanov Date: Mon, 30 Dec 2019 11:07:24 +0200 Subject: [PATCH] fix(examples): serverAddress -> url --- examples/config/config.json | 2 +- examples/config/config.production.json | 2 +- examples/getClient.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/config/config.json b/examples/config/config.json index a1b6815..7a7623c 100644 --- a/examples/config/config.json +++ b/examples/config/config.json @@ -1,5 +1,5 @@ { - "serverAddress": "https://ebics-test.server", + "url": "https://ebics-test.server", "partnerId": "EBICS ParnerID Test", "userId": "MyUserIdTest", "hostId": "MyHostIdTest", diff --git a/examples/config/config.production.json b/examples/config/config.production.json index 7432101..ef199fb 100644 --- a/examples/config/config.production.json +++ b/examples/config/config.production.json @@ -1,5 +1,5 @@ { - "serverAddress": "https://ebics.server", + "url": "https://ebics.server", "partnerId": "EBICS ParnerID Production", "userId": "MyUserIdProduction", "hostId": "MyHostIdProduction", diff --git a/examples/getClient.js b/examples/getClient.js index a473f42..ba701e6 100644 --- a/examples/getClient.js +++ b/examples/getClient.js @@ -5,14 +5,14 @@ const { Client, fsKeysStorage } = require('../index'); const loadConfig = require('./loadConfig'); module.exports = ({ - serverAddress, + url, partnerId, userId, hostId, passphrase, keyStoragePath, } = loadConfig()) => new Client({ - serverAddress, + url, partnerId, userId, hostId,