@sap-ux/axios-extension 1.18.4 → 1.18.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,8 @@ async function getReentranceTicket({ backendUrl, logger, timeout = connection_1.
27
27
  const redirectPort = server.address().port;
28
28
  // Open browser to handle SAML flow and return the reentrance ticket
29
29
  const scenario = process.env.FIORI_TOOLS_SCENARIO ?? 'FTO1';
30
- const url = `${backend.uiHostname()}${ADT_REENTRANCE_ENDPOINT}?scenario=${scenario}&redirect-url=${redirectUrl(redirectPort)}`;
30
+ const endpoint = process.env.FIORI_TOOLS_REENTRANCE_ENDPOINT ?? ADT_REENTRANCE_ENDPOINT;
31
+ const url = `${backend.uiHostname()}${endpoint}?scenario=${scenario}&redirect-url=${redirectUrl(redirectPort)}`;
31
32
  open(url)?.catch((error) => logger.error(error));
32
33
  });
33
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap-ux/axios-extension",
3
- "version": "1.18.4",
3
+ "version": "1.18.6",
4
4
  "description": "Extension of the Axios module adding convenience methods to interact with SAP systems especially with OData services.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "private": false,
15
15
  "main": "dist/index.js",
16
16
  "dependencies": {
17
- "axios": "1.7.4",
17
+ "axios": "1.7.9",
18
18
  "detect-content-type": "1.2.0",
19
19
  "fast-xml-parser": "4.4.1",
20
20
  "lodash": "4.17.21",
@@ -25,7 +25,7 @@
25
25
  "https-proxy-agent": "7.0.5",
26
26
  "http-proxy-agent": "7.0.2",
27
27
  "proxy-from-env": "1.1.0",
28
- "@sap-ux/btp-utils": "1.0.0",
28
+ "@sap-ux/btp-utils": "1.0.1",
29
29
  "@sap-ux/logger": "0.6.0",
30
30
  "@sap-ux/feature-toggle": "0.2.3"
31
31
  },
@@ -34,7 +34,7 @@
34
34
  "nock": "13.4.0",
35
35
  "supertest": "6.3.3",
36
36
  "@types/proxy-from-env": "1.0.1",
37
- "@sap-ux/project-access": "1.29.3"
37
+ "@sap-ux/project-access": "1.29.7"
38
38
  },
39
39
  "files": [
40
40
  "dist",