From 215cab7c1c7f4fe50ca751139686eff3056235b3 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Fri, 16 Aug 2019 09:33:53 +0200 Subject: [PATCH] README: fix API description for FinTSClient constructor Hi, started to play with your library yesterday, nice work! Just found that this missing piece of documentation in the README.md could have saved me half an hour (although this is correctly documented in the source code). So this fix might be of help to others. --- Readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 48d6167..3769602 100644 --- a/Readme.md +++ b/Readme.md @@ -74,10 +74,18 @@ client.EstablishConnection(function(error){ ## API Beschreibung ```js - FinTSClient(in_blz,in_kunden_id,in_pin,in_logger) + FinTSClient(in_blz,in_kunden_id,in_pin,in_bankenlist,in_logger) in_blz - Die entsprechende BLZ als Zahl oder String in_kunden_id - Die Benutzerkennung bzw. Kunden-ID - 9999999999 = Anonymer Benutzer in_pin - Die Pin + in_bankenlist - Liste mit Bankdaten mit Key BLZ + { + '12345678': { + 'blz':12345678, + 'url':"https://localhost:3000/cgi-bin/hbciservlet" + }, + "undefined":{'url':""} + }; in_logger - Ein Bunyan Logger per default wird nichts gelogged Attribute