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,