Skip to content

Commit

Permalink
Fix error TS2741 closes #164
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Aug 10, 2020
1 parent dcc6b83 commit 82be406
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ Change log
2.1.0 (2020-08-10)
------------------

- CLA replaced with DCO, FSFE Reuse compliance
- README added: the installation and build from source work for NodeJS versions with N-API >= 6; fix #162
- CLA replaced with DCO, FSFE Reuse compliance 28a4ef5
- README added: the installation and build from source work for NodeJS versions with N-API >= 6; fix #162 cda585c
- NWRFC SDK Server API exposed dcc6b83
-


2.0.3 (2020-07-27)
Expand Down
2 changes: 1 addition & 1 deletion lib/wrapper/sapnwrfc-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface RfcConnectionParameters {
trace?: EnumTrace;
user?: string;
passwd?: string;
client: string;
client?: string;
lang?: string;
mysapsso2?: string;
getsso2?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/ts/wrapper/sapnwrfc-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface RfcConnectionParameters {
// client
user?: string;
passwd?: string;
client: string;
client?: string;
lang?: string;
mysapsso2?: string;
getsso2?: string;
Expand Down

0 comments on commit 82be406

Please sign in to comment.