mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-23 22:52:08 +00:00
fix(examples): serverAddress -> url
This commit is contained in:
parent
e98a1f8cc3
commit
3d4c94dff8
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"serverAddress": "https://ebics-test.server",
|
"url": "https://ebics-test.server",
|
||||||
"partnerId": "EBICS ParnerID Test",
|
"partnerId": "EBICS ParnerID Test",
|
||||||
"userId": "MyUserIdTest",
|
"userId": "MyUserIdTest",
|
||||||
"hostId": "MyHostIdTest",
|
"hostId": "MyHostIdTest",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"serverAddress": "https://ebics.server",
|
"url": "https://ebics.server",
|
||||||
"partnerId": "EBICS ParnerID Production",
|
"partnerId": "EBICS ParnerID Production",
|
||||||
"userId": "MyUserIdProduction",
|
"userId": "MyUserIdProduction",
|
||||||
"hostId": "MyHostIdProduction",
|
"hostId": "MyHostIdProduction",
|
||||||
|
@ -5,14 +5,14 @@ const { Client, fsKeysStorage } = require('../index');
|
|||||||
const loadConfig = require('./loadConfig');
|
const loadConfig = require('./loadConfig');
|
||||||
|
|
||||||
module.exports = ({
|
module.exports = ({
|
||||||
serverAddress,
|
url,
|
||||||
partnerId,
|
partnerId,
|
||||||
userId,
|
userId,
|
||||||
hostId,
|
hostId,
|
||||||
passphrase,
|
passphrase,
|
||||||
keyStoragePath,
|
keyStoragePath,
|
||||||
} = loadConfig()) => new Client({
|
} = loadConfig()) => new Client({
|
||||||
serverAddress,
|
url,
|
||||||
partnerId,
|
partnerId,
|
||||||
userId,
|
userId,
|
||||||
hostId,
|
hostId,
|
||||||
|
Loading…
Reference in New Issue
Block a user