@sap/xssec
Advanced tools
Comparing version 3.2.4 to 3.2.5
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
## 3.2.5 - 2020-09-07 | ||
- fix to be backward-compatible for tokenFlow-APIs | ||
## 3.2.4 - 2020-09-03 | ||
@@ -5,0 +9,0 @@ - fix an issue with IAS multitenancy support |
@@ -69,4 +69,4 @@ 'use strict'; | ||
if(result.statusCode === 200) { | ||
const response = JSON.parse(result.body); | ||
cb(null, response); | ||
const json = JSON.parse(result.body); | ||
cb(null, json.id_token || json.access_token || json, json); | ||
} else { | ||
@@ -73,0 +73,0 @@ throw new Error(`Call with options: ${options} responded with ${result.statusCode} - ${result.body}`); |
{ | ||
"name": "@sap/xssec", | ||
"version": "3.2.4", | ||
"version": "3.2.5", | ||
"description": "XS Advanced Container Security API for node.js", | ||
@@ -5,0 +5,0 @@ "main": "./lib", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
120071